You are here

function taxonomy_menu_path_custom_taxonomy_menu_path in Taxonomy menu 6.2

Implementation of hook_taxonomy_menu_path().

File

taxonomy_menu_path_custom/taxonomy_menu_path_custom.module, line 45
Implementation of hook_taxonomy_menu_options().

Code

function taxonomy_menu_path_custom_taxonomy_menu_path() {
  $output = array(
    'taxonomy_menu_path_custom_path' => t('Custom path'),
  );
  return $output;
}