Skip to content
Snippets Groups Projects
Commit 9e826723 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2609400 by tim.plunkett, effulgentsia, benjamin.merkley: menu.html.twig...

Issue #2609400 by tim.plunkett, effulgentsia, benjamin.merkley: menu.html.twig says that menu_name is an available variable, but it's not
parent ff9845ae
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -1778,7 +1778,7 @@ function drupal_common_theme() { ...@@ -1778,7 +1778,7 @@ function drupal_common_theme() {
), ),
// From menu.inc. // From menu.inc.
'menu' => array( 'menu' => array(
'variables' => array('items' => array(), 'attributes' => array()), 'variables' => array('menu_name' => NULL, 'items' => array(), 'attributes' => array()),
), ),
'menu_local_task' => array( 'menu_local_task' => array(
'render element' => 'element', 'render element' => 'element',
......
...@@ -177,6 +177,7 @@ public function build(array $tree) { ...@@ -177,6 +177,7 @@ public function build(array $tree) {
// Add the theme wrapper for outer markup. // Add the theme wrapper for outer markup.
// Allow menu-specific theme overrides. // Allow menu-specific theme overrides.
$build['#theme'] = 'menu__' . strtr($menu_name, '-', '_'); $build['#theme'] = 'menu__' . strtr($menu_name, '-', '_');
$build['#menu_name'] = $menu_name;
$build['#items'] = $items; $build['#items'] = $items;
// Set cache tag. // Set cache tag.
$build['#cache']['tags'][] = 'config:system.menu.' . $menu_name; $build['#cache']['tags'][] = 'config:system.menu.' . $menu_name;
......
...@@ -135,6 +135,7 @@ public function providerTestBuildCacheability() { ...@@ -135,6 +135,7 @@ public function providerTestBuildCacheability() {
'max-age' => Cache::PERMANENT, 'max-age' => Cache::PERMANENT,
], ],
'#sorted' => TRUE, '#sorted' => TRUE,
'#menu_name' => 'mock',
'#theme' => 'menu__mock', '#theme' => 'menu__mock',
'#items' => [ '#items' => [
// To be filled when generating test cases, using $get_built_element(). // To be filled when generating test cases, using $get_built_element().
......
...@@ -30,6 +30,7 @@ public function build(array $tree, $level = 0) { ...@@ -30,6 +30,7 @@ public function build(array $tree, $level = 0) {
$menu_name = $first_link->getMenuName(); $menu_name = $first_link->getMenuName();
// Add a more specific theme suggestion to differentiate this rendered // Add a more specific theme suggestion to differentiate this rendered
// menu from others. // menu from others.
$build['#menu_name'] = $menu_name;
$build['#theme'] = 'menu__toolbar__' . strtr($menu_name, '-', '_'); $build['#theme'] = 'menu__toolbar__' . strtr($menu_name, '-', '_');
return $build; return $build;
} }
......
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