function getlocations_leaflet_menu in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_leaflet/getlocations_leaflet.module \getlocations_leaflet_menu()
Implements hook_menu().
File
- modules/
getlocations_leaflet/ getlocations_leaflet.module, line 30 - getlocations_leaflet.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_leaflet_menu() {
$items = array();
$items[GETLOCATIONS_ADMIN_PATH . '/leaflet'] = array(
'title' => 'Leaflet',
'description' => 'Configure Getlocations leaflet',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'getlocations_leaflet_settings_form',
),
'access arguments' => array(
'administer site configuration',
),
'type' => MENU_LOCAL_TASK,
'weight' => 6,
);
// getlocations/[entity_type]/$nid # show all location on one entity_type
$items['getlocations_leaflet/%getlocations_entity_type/%getlocations_id'] = array(
'title' => 'Get locations',
'access callback' => 'getlocations_access_location',
'page callback' => 'getlocations_leaflet_entity_type_map',
'page arguments' => array(
1,
2,
),
'type' => MENU_CALLBACK,
);
return $items;
}