我想在每個頁面上附加一個樹枝模板。
在Drupal 7的,我們基本上都採用hook_page_alter
HOOK_page_alter in Drupal 8
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中做到這一點?你需要的是在這裏