You are here

function location_taxonomize_menu in Location Taxonomize 7.2

Same name and namespace in other branches
  1. 7 location_taxonomize.module \location_taxonomize_menu()

Implements hook_menu().

File

./location_taxonomize.module, line 15

Code

function location_taxonomize_menu() {
  $items = array();

  // module configuration page
  $items['admin/config/content/' . LT_MODULE_ID] = array(
    'title' => 'Location Taxonomize',
    'description' => 'Configuration for Location taxonomize module',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'location_taxonomize_form',
    ),
    'access callback' => 'location_taxonomize_access_admin',
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}