You are here

function taxonomy_menu_vocabulary_path_taxonomy_menu_path in Taxonomy menu 6.2

Implementation of hook_taxonomy_menu_path.

Return value

array function name => Display Title a list of the path options.

File

taxonomy_menu_vocabulary_path/taxonomy_menu_vocabulary_path.module, line 46
Adds a tad extra functionality to the new Taxonomy Menu.

Code

function taxonomy_menu_vocabulary_path_taxonomy_menu_path() {
  $output = array(
    'taxonomy_menu_vocabulary_path_path_vocab_view' => t('Vocabulary path'),
  );
  return $output;
}