Drupal 8 hook_theme_suggestions_HOOK_alter()未被使用

时间:2015-08-18 12:04:26

标签: drupal drupal-theming drupal-8

我使用hook_theme_suggestions_HOOK_alter()根据内容类型为page.html.twig添加主题钩子建议:

function mytheme_theme_suggestions_page_alter(array &$suggestions, array $variables) {
  $node = \Drupal::request()->attributes->get('node');
  $suggestions[] = 'page--node--' . $node->getType();
}

现在我的twig调试模式选择了这个:

    <!-- FILE NAME SUGGESTIONS:
   * page--node--case.html.twig (new suggestion based on content type 'case')
   * page--node--3.html.twig
   * page--node--%.html.twig
   * page--node.html.twig
   x page.html.twig
   -->

但是,当我创建一个名为page--node--case.html.twig的文件时,它不会被渲染。相反,正在使用page.html.twig

任何人都知道发生了什么?

1 个答案:

答案 0 :(得分:4)

我发现了什么问题。

显然,在定义新建议时,Drupal需要下划线而不是破折号。然后Drupal将这些下划线转换为破折号,这样实际的文件名仍然是页面 - 节点 - case.html.twig

所以: $suggestions [] = 'page--node--'.$node->gettype();

应该是:$suggestions [] = 'page__node__'.$node->gettype();

文档: https://www.drupal.org/node/2186401