Drupal 8 Twig在渲染过程中从变量中删除所有样式标记

时间:2017-04-06 10:32:56

标签: drupal twig

如何保留在preprocess_page期间添加的变量的所有内容。

e.g。在枝条文件中进行变量渲染时,还需要添加样式标记。

1 个答案:

答案 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'),
        );
    }
}