如何保留在preprocess_page期间添加的变量的所有内容。
e.g。在枝条文件中进行变量渲染时,还需要添加样式标记。
答案 0 :(得分:0)
class MaisexpertBlock extends BlockBase {
public function build() {
return array(
//'#cache' => array('max-age' => 0),
'#type' => 'inline_template',
'#template' => '{{ somecontent | raw }}',
'#context' => array('somecontent' => 'Your content with <html></html> code'),
);
}
}