You are here

function google_map_field_menu in Google Map Field 7.2

Same name and namespace in other branches
  1. 7 google_map_field.module \google_map_field_menu()

Implements hook_menu().

File

./google_map_field.module, line 37
This file defines all the necessary hooks and functions to create a Google Map Field field type for inserting maps directly into content items (node, entities etc).

Code

function google_map_field_menu() {
  $items = array();
  $items['admin/config/development/google-map-field'] = array(
    'title' => 'Google Map Field',
    'description' => 'Google Maps Field config page.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'google_map_field_settings_form',
    ),
    'file' => 'includes/google_map_field.admin.inc',
    'access arguments' => array(
      'access google map config',
    ),
  );
  return $items;
}