You are here

function footermap_menu in footermap: a footer site map 5

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

File

./footermap.module, line 47

Code

function footermap_menu() {
  $items = array();
  $items[] = array(
    'path' => 'admin/settings/footermap',
    'title' => t('Footermap'),
    'description' => t('Change recurse limit or specify top menu id'),
    'callback' => 'drupal_get_form',
    'callback arguments' => array(
      'footermap_settings',
    ),
    'access' => user_access('administer site configuration'),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}