SilverStripe 3.2 HTMLEditorField使用HtmlEditorConfig

时间:2015-11-14 18:45:56

标签: css field silverstripe

我在内容HTMLEditorField之前添加了HtmlEditorConfig。问题是,我需要刷新或重新加载浏览器页面以查看我的自定义CSS设置...

我的代码:

HtmlEditorConfig::get('cms')->setOption('content_css', '/themes/simple/css/test'.$this->variable.'.css, /themes/simple/css/typography.css');
$fields->addFieldsToTab("Root.Main", new HTMLEditorField('Content', 'Content'));            

我的问题:当页面或数据对象加载时,是否可以自动刷新HTMLEditorField以使用HtmlEditorConfig设置?我无法在_config.php中使用它,因为我的自定义HtmlEditorConfig代码中有一个变量。

1 个答案:

答案 0 :(得分:1)

我找到了解决方案!还有另一种方法可以将HTMLEditorConfig配置为一些自定义变量。在/mysite/_config.php中,无法使用HTMLEditorConfig添加变量。并且将HTMLEditorConfig包含在带有HTMLEditorField的Page类中仅在刷新URL一次时才有效。

解决方案是使用LeftAndMainExtension扩展LeftAndMain。有我的解决方案代码:

/mysite/_config.php

class HTMLEditorConfigSubsitesInit extends LeftAndMainExtension
{
    function init()
    {

        $SiteConfig=SiteConfig::get()->filter('SubsiteID', Subsite::currentSubsiteID() )->First();
        $stripedMainFont = str_replace(" ", "-", $SiteConfig->MainFont );

        HtmlEditorConfig::get('cms')->setOption('content_css', '/mysite/css/fonts_'.$stripedMainFont.'.css, /assets/Subsite'.Subsite::currentSubsiteID().'/_customstyles.css, /themes/'.$SiteConfig->Theme.'/css/typography.css');

    }
}

/mysite/code/HTMLEditorConfigSubsitesInit.php

{{1}}

HTMLEditor定制非常​​有用,可以使用Subsites模块添加子网站相关的CSS样式文件。