【发布时间】:2017-04-29 22:57:01
【问题描述】:
我正在尝试在每个页面上附加一个树枝模板。
在 Drupal 7 中,我们基本上使用 hook_page_alter 附加它
function hook_page_alter(&$page) {
$page['page_bottom']['devel']= array(
'#type' => 'markup',
'#markup' => '<div style="clear:both;">' . theme('TEST') . '</div>',
); // add test template on every page at bottom position.
}
但我认为在 Drupal 8 中没有 hook_page_alter。
如何在 drupal 8 中做到这一点??
【问题讨论】:
-
你需要的一切都在这里 ;) drupal.org/docs/8/theming