You are here

function taxonomy_menu_custom_paths_taxonomy_menu_path in Taxonomy menu 7.2

Same name and namespace in other branches
  1. 8 taxonomy_menu_custom_paths/taxonomy_menu_custom_paths.module \taxonomy_menu_custom_paths_taxonomy_menu_path()

Implements hook_taxonomy_menu_path().

File

taxonomy_menu_custom_paths/taxonomy_menu_custom_paths.module, line 95
taxonomy_menu_custom_paths module

Code

function taxonomy_menu_custom_paths_taxonomy_menu_path() {
  $output = array(
    'taxonomy_menu_path_custom' => t('Custom (<base_path>/%)'),
  );
  return $output;
}