function taxonomy_menu_taxonomy_menu_path in Taxonomy menu 8
Same name and namespace in other branches
- 6.3 taxonomy_menu.module \taxonomy_menu_taxonomy_menu_path()
- 6.2 taxonomy_menu.module \taxonomy_menu_taxonomy_menu_path()
- 7.2 taxonomy_menu.module \taxonomy_menu_taxonomy_menu_path()
- 7 taxonomy_menu.module \taxonomy_menu_taxonomy_menu_path()
Implements hook_taxonomy_menu_path().
Invoked from taxonomy_menu_get_paths.
Return value
array An array composed of the name of the function to be run to build the path (key) and a description (value).
File
- ./
taxonomy_menu.module, line 575 - Generates menu links for all selected taxonomy terms.
Code
function taxonomy_menu_taxonomy_menu_path() {
$output = array(
'taxonomy_menu_path_default' => t('Default (taxonomy/term/tid)'),
'taxonomy_menu_path_multiple_terms' => t('Multiple terms (taxonomy/term/tid1+tid2+tid3...)'),
);
return $output;
}