动态内容块octobercms

时间:2016-01-04 03:44:24

标签: php octobercms

如何渲染动态内容块?

{% content 'variable.html' %}
  • variable是要呈现的其他内容的占位符。

谢谢,

1 个答案:

答案 0 :(得分:1)

尝试这样的事情:

//php section
public function onStart(){
    $this['some_content_variable'] = 'variable.htm';
}
==
{% content some_content_variable %}