You are here

function footermap_menu in footermap: a footer site map 7

Same name and namespace in other branches
  1. 5.2 footermap.module \footermap_menu()
  2. 5 footermap.module \footermap_menu()
  3. 6 footermap.module \footermap_menu()

File

./footermap.module, line 32

Code

function footermap_menu() {
  $items = array();
  $items['admin/structure/footermap'] = array(
    'title' => 'Footermap',
    'description' => 'Configure settings that footermap will use to dynamically generate the sitemap.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'footermap_settings',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}