function toolbar_test_preprocess_menu in Drupal 10
Implements hook_preprocess_HOOK().
File
- core/
modules/ toolbar/ tests/ modules/ toolbar_test/ toolbar_test.module, line 58 - A dummy module to test API interaction with the Toolbar module.
Code
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];
}
}