You are here

function geofield_map_menu in Geofield 7.2

Implements hook_menu().

File

modules/geofield_map/geofield_map.module, line 10

Code

function geofield_map_menu() {
  $items = array();
  $items['admin/config/content/geofield_map'] = array(
    'title' => 'Geofield Map',
    'description' => 'Configuration for API keys required by the Geofield Map module.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'geofield_map_admin_settings',
    ),
    'file' => 'geofield_map.admin.inc',
    'access arguments' => array(
      'administer geofield_map configuration',
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}