function hierarchical_taxonomy_menu_theme in Hierarchical Taxonomy Menu 8
Implements hook_theme().
File
- ./
hierarchical_taxonomy_menu.module, line 38 - Contains hierarchical_taxonomy_menu.module.
Code
function hierarchical_taxonomy_menu_theme($existing, $type, $theme, $path) {
return [
'hierarchical_taxonomy_menu' => [
'variables' => [
'menu_tree' => [],
'route_tid' => NULL,
'vocabulary' => NULL,
'current_depth' => 0,
'max_depth' => 0,
'collapsible' => NULL,
],
],
];
}