Skip to content
Snippets Groups Projects
Unverified Commit 117db6f9 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3227370 by pfrenssen: Toolbar menu theme override omits the 'menu_name' variable

parent bfe52748
No related branches found
No related tags found
No related merge requests found
......@@ -48,3 +48,14 @@ function toolbar_test_toolbar() {
return $items;
}
/**
* Implements hook_preprocess_HOOK().
*/
function toolbar_test_preprocess_menu(&$variables) {
// All the standard hook_theme variables should be populated when the
// Toolbar module is rendering a menu.
foreach (['menu_name', 'items', 'attributes'] as $variable) {
$variables[$variable];
}
}
......@@ -41,7 +41,7 @@ function toolbar_theme($existing, $type, $theme, $path) {
];
$items['menu__toolbar'] = [
'base hook' => 'menu',
'variables' => ['items' => [], 'attributes' => []],
'variables' => ['menu_name' => NULL, 'items' => [], 'attributes' => []],
];
return $items;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment