function calendar_systems_menu in Calendar Systems 8
Same name and namespace in other branches
- 6.3 calendar_systems.module \calendar_systems_menu()
- 6 calendar_systems.module \calendar_systems_menu()
- 6.2 calendar_systems.module \calendar_systems_menu()
- 7.3 calendar_systems.module \calendar_systems_menu()
- 7 calendar_systems.module \calendar_systems_menu()
- 7.2 calendar_systems.module \calendar_systems_menu()
Implements hook_menu().
File
- ./
calendar_systems.module, line 38 - Contains Calendar Systems hook implementations and helpers.
Code
function calendar_systems_menu() {
$items = array();
// Main configuration page:
$items['admin/config/regional/calendar-systems'] = array(
'title' => 'Calendar systems',
'description' => 'Administer calendar systems profiles.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'calendar_systems_profile_overview',
),
'access arguments' => array(
'administer calendar_systems',
),
'file' => 'calendar_systems.admin.inc',
);
// Configuration profile:
$items['admin/config/regional/calendar-systems/profile'] = array(
'title' => 'Calendar systems profiles',
'description' => 'Assign calendar systems.',
'type' => MENU_DEFAULT_LOCAL_TASK,
);
// Profile removal:
$items['admin/config/regional/calendar-systems/profile/%/delete'] = array(
'title' => 'Remove',
'description' => 'Calendar systems profile removal.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'calendar_systems_profile_delete_confirm',
5,
),
'access arguments' => array(
'administer calendar_systems',
),
'file' => 'calendar_systems.admin.inc',
);
return $items;
}