function gm3_menu in Google Maps API V3 7
Implementation of hook_menu().
File
- ./
gm3.module, line 335
Code
function gm3_menu() {
return array(
'admin/config/content/gm3' => array(
'title' => 'Google Map settings',
'description' => 'Configure default behavior of the Google Map module.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'gm3_admin_settings_form',
),
'access arguments' => array(
'administer gm3',
),
'file' => 'gm3.admin.inc',
),
);
}