function site_map_menu in Site map 6
Same name and namespace in other branches
- 5 site_map.module \site_map_menu()
- 6.2 site_map.module \site_map_menu()
- 7 site_map.module \site_map_menu()
Implements hook_menu().
File
- ./
site_map.module, line 47 - Original author: Nic Ivy Now maintained by by Fredrik Jonsson fredrik at combonet dot se
Code
function site_map_menu() {
$items['admin/settings/sitemap'] = array(
'title' => 'Site map',
'description' => 'Control what should be displayed on the site map.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'site_map_admin_settings',
),
'access arguments' => array(
'administer site configuration',
),
'file' => 'site_map.admin.inc',
'type' => MENU_NORMAL_ITEM,
);
$items['sitemap'] = array(
'title' => 'Site map',
'description' => 'Display a site map with RSS feeds.',
'page callback' => 'site_map_page',
'access arguments' => array(
'access site map',
),
'type' => MENU_SUGGESTED_ITEM,
);
return $items;
}