我在SiteConfig
中创建徽标上传的自定义字段,并在Settings
中上传徽标并尝试在.ss
模板中呈现徽标之后。渲染后,模板中未显示任何内容。我在Silverstripe v3
中使用的这段代码正常运行。现在v4
中不起作用。
这是我的Extension
:
class SiteConfigExtension extends \SilverStripe\ORM\DataExtension
{
private static $db = array (
'FacebookLink' => 'Varchar',
'TwitterLink' => 'Varchar',
'GoogleLink' => 'Varchar',
);
private static $has_one = array(
'Logo' => Image::class,
'DefaultImage' => Image::class
);
public function updateCMSFields(FieldList $fields)
{
parent::updateCMSFields($fields);
$fields->addFieldsToTab('Root.Social', array (
TextField::create('FacebookLink','Facebook'),
TextField::create('TwitterLink','Twitter'),
TextField::create('GoogleLink','Google'),
));
$fields->addFieldsToTab('Root.Main', array(
$logo = UploadField::create('Logo', 'Logo'),
$defaultImage = UploadField::create('DefaultImage', 'Default Image'),
));
$logo->setFolderName('Logo');
$defaultImage->setFolderName("Settings");
}
}
这是我的模板文件header.ss
:
<% with $SiteConfig %>
<div style="display: inline-block;">
<div style="float: left;">
<h1 id="logo">
<% if $Logo %>
<a>$Logo.SetWidth(50)</a>
<% end_if %>
</h1>
</div>
<div id="logo-tagline" style="float:left;">
<% if $Title %>
<h1>$Title</h1>
<% end_if %>
<% if $Tagline %>
<strong>$Tagline</strong>
<% end_if %>
</div>
</div>
<% end_with %>
我想念什么?我做错了什么?感谢您的回答。
答案 0 :(得分:1)
图像在SilverStripe 4中进行了版本控制,因此您需要确保在保存SiteConfig对象时发布图像。
您没有提到您使用的是哪个版本的SilverStripe 4-到目前为止,在4.1.2和4.2.0-beta1中已经查看过this issue。这意味着如果您将the ownership API应用于这些相关对象,则在保存SiteConfig模型时它们将自动发布,例如:
private static $owns = ['Logo', 'DefaultImage'];
如果您使用的是SilverStripe 4.1.2或更高版本,那么您只需执行上述操作即可。
对于早于此的版本,您可以在SiteConfigExtension中实现自己的钩子:
public function onAfterWrite()
{
if ($this->owner->Logo()->exists()) {
$this->owner->Logo()->publishSingle();
}
// ... same for other has_ones that are versioned
}