You are here

function taxonomy_menu_taxonomy_menu_path in Taxonomy menu 7

Same name and namespace in other branches
  1. 8 taxonomy_menu.module \taxonomy_menu_taxonomy_menu_path()
  2. 6.3 taxonomy_menu.module \taxonomy_menu_taxonomy_menu_path()
  3. 6.2 taxonomy_menu.module \taxonomy_menu_taxonomy_menu_path()
  4. 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

_taxonomy_menu_get_paths().

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;
}