You are here

function calendar_systems_date_properties_menu in Calendar Systems 8

Same name and namespace in other branches
  1. 7 calendar_systems_date_properties/calendar_systems_date_properties.module \calendar_systems_date_properties_menu()
  2. 7.2 calendar_systems_date_properties/calendar_systems_date_properties.module \calendar_systems_date_properties_menu()

Implements hook_menu().

File

calendar_systems_date_properties/calendar_systems_date_properties.module, line 34
Contains hook implementations and helpers.

Code

function calendar_systems_date_properties_menu() {
  $items = array();

  // Main configuration page:
  $items['admin/config/regional/calendar-systems/date_properties'] = array(
    'title' => 'Calendar systems date properties',
    'description' => 'Administer calendar systems date properties.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'calendar_systems_date_properties_settings_form',
    ),
    'access arguments' => array(
      'administer calendar_systems_date_properties',
    ),
    'file' => 'calendar_systems_date_properties.admin.inc',
    'type' => MENU_LOCAL_TASK,
  );
  return $items;
}