You are here

function taxonomy_title_menu in Taxonomy Title 6

Same name and namespace in other branches
  1. 7 taxonomy_title.module \taxonomy_title_menu()

Implementation of hook_menu().

File

./taxonomy_title.module, line 15
Enhanced control over the heading tag for the taxonomy term list pages.

Code

function taxonomy_title_menu() {
  $items['admin/settings/taxonomy_title'] = array(
    'title' => 'Taxonomy title',
    'description' => 'Settings for the taxonomy title module.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'taxonomy_title_admin_settings',
    ),
    'access callback' => 'user_access',
    'access arguments' => array(
      'administer taxonomy',
    ),
    'type' => MENU_NORMAL_ITEM,
    'file' => 'taxonomy_title.admin.inc',
  );
  return $items;
}