You are here

function addressfield_staticmap_menu in Address Field Static Map 7

Implements hook_menu().

File

./addressfield_staticmap.module, line 25
Main file for the addressfield static map module.

Code

function addressfield_staticmap_menu() {
  $items['admin/config/system/addressfield_staticmap'] = array(
    'title' => 'Address Field Static Map Block',
    'description' => 'Configure settings for the address field static map block.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'addressfield_staticmap_admin_form',
    ),
    'file' => 'addressfield_staticmap.admin.inc',
    'access arguments' => array(
      'administer addressfield staticmap',
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}