function taxonomy_menu_taxonomy_menu_path in Taxonomy menu 7
Same name and namespace in other branches
- 8 taxonomy_menu.module \taxonomy_menu_taxonomy_menu_path()
- 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()
Implements hook_taxonomy_menu_path().
Return value
array A list of the path options in the form: function_name => Display Title.
See also
File
- ./
taxonomy_menu.module, line 797 - Adds links to taxonomy terms into a menu.
Code
function taxonomy_menu_taxonomy_menu_path() {
$output = array(
'taxonomy_menu_path_default' => t('Default'),
);
return $output;
}