You are here

function geolocation_googlemaps_menu in Geolocation Field 7

Implements hook_menu().

File

modules/geolocation_googlemaps/geolocation_googlemaps.module, line 547
Google Maps widget and formatters for Geolocation.

Code

function geolocation_googlemaps_menu() {
  $items['admin/config/services/googlemaps'] = array(
    'title' => 'Geolocation Google Maps',
    'description' => 'Configure Geolocation Google Maps settings',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'geolocation_googlemaps_admin_settings',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}