taxonomy_menu

5 taxonomy.module taxonomy_menu($may_cache)
6 taxonomy.module taxonomy_menu()
7 taxonomy.module taxonomy_menu()
8 taxonomy.module taxonomy_menu()

Implements hook_menu().

File

modules/taxonomy/taxonomy.module, line 259
Enables the organization of content into categories.

Code

function taxonomy_menu() {
  $items['admin/structure/taxonomy'] = array(
    'title' => 'Taxonomy', 
    'description' => 'Manage tagging, categorization, and classification of your content.', 
    'page callback' => 'drupal_get_form', 
    'page arguments' => array('taxonomy_overview_vocabularies'), 
    'access arguments' => array('administer taxonomy'), 
    'file' => 'taxonomy.admin.inc',
  );
  $items['admin/structure/taxonomy/list'] = array(
    'title' => 'List', 
    'type' => MENU_DEFAULT_LOCAL_TASK, 
    'weight' => -10,
  );
  $items['admin/structure/taxonomy/add'] = array(
    'title' => 'Add vocabulary', 
    'page callback' => 'drupal_get_form', 
    'page arguments' => array('taxonomy_form_vocabulary'), 
    'access arguments' => array('administer taxonomy'), 
    'type' => MENU_LOCAL_ACTION, 
    'file' => 'taxonomy.admin.inc',
  );

  $items['taxonomy/term/%taxonomy_term'] = array(
    'title' => 'Taxonomy term', 
    'title callback' => 'taxonomy_term_title', 
    'title arguments' => array(2), 
    'page callback' => 'taxonomy_term_page', 
    'page arguments' => array(2), 
    'access arguments' => array('access content'), 
    'file' => 'taxonomy.pages.inc',
  );
  $items['taxonomy/term/%taxonomy_term/view'] = array(
    'title' => 'View', 
    'type' => MENU_DEFAULT_LOCAL_TASK,
  );
  $items['taxonomy/term/%taxonomy_term/edit'] = array(
    'title' => 'Edit', 
    'page callback' => 'drupal_get_form',
    // Pass a NULL argument to ensure that additional path components are not
    // passed to taxonomy_form_term() as the vocabulary machine name argument. 
    'page arguments' => array('taxonomy_form_term', 2, NULL), 
    'access callback' => 'taxonomy_term_edit_access', 
    'access arguments' => array(2), 
    'type' => MENU_LOCAL_TASK, 
    'weight' => 10, 
    'file' => 'taxonomy.admin.inc',
  );
  $items['taxonomy/term/%taxonomy_term/feed'] = array(
    'title' => 'Taxonomy term', 
    'title callback' => 'taxonomy_term_title', 
    'title arguments' => array(2), 
    'page callback' => 'taxonomy_term_feed', 
    'page arguments' => array(2), 
    'access arguments' => array('access content'), 
    'type' => MENU_CALLBACK, 
    'file' => 'taxonomy.pages.inc',
  );
  $items['taxonomy/autocomplete'] = array(
    'title' => 'Autocomplete taxonomy', 
    'page callback' => 'taxonomy_autocomplete', 
    'access arguments' => array('access content'), 
    'type' => MENU_CALLBACK, 
    'file' => 'taxonomy.pages.inc',
  );

  $items['admin/structure/taxonomy/%taxonomy_vocabulary_machine_name'] = array(
    'title callback' => 'taxonomy_admin_vocabulary_title_callback', 
    'title arguments' => array(3), 
    'page callback' => 'drupal_get_form', 
    'page arguments' => array('taxonomy_overview_terms', 3), 
    'access arguments' => array('administer taxonomy'), 
    'file' => 'taxonomy.admin.inc',
  );
  $items['admin/structure/taxonomy/%taxonomy_vocabulary_machine_name/list'] = array(
    'title' => 'List', 
    'type' => MENU_DEFAULT_LOCAL_TASK, 
    'weight' => -20,
  );
  $items['admin/structure/taxonomy/%taxonomy_vocabulary_machine_name/edit'] = array(
    'title' => 'Edit', 
    'page callback' => 'drupal_get_form', 
    'page arguments' => array('taxonomy_form_vocabulary', 3), 
    'access arguments' => array('administer taxonomy'), 
    'type' => MENU_LOCAL_TASK, 
    'weight' => -10, 
    'file' => 'taxonomy.admin.inc',
  );

  $items['admin/structure/taxonomy/%taxonomy_vocabulary_machine_name/add'] = array(
    'title' => 'Add term', 
    'page callback' => 'drupal_get_form', 
    'page arguments' => array('taxonomy_form_term', array(), 3), 
    'access arguments' => array('administer taxonomy'), 
    'type' => MENU_LOCAL_ACTION, 
    'file' => 'taxonomy.admin.inc',
  );

  return $items;
}
Login or register to post comments