You are here

function date_views_menu in Date 7.3

Same name and namespace in other branches
  1. 7.2 date_views/date_views.module \date_views_menu()

Implements hook_menu().

File

date_views/date_views.module, line 11
Date Views module.

Code

function date_views_menu() {

  // Used to import files from a local filesystem into Drupal.
  $items['admin/config/regional/date-time/date-views'] = array(
    'title' => 'Date views',
    'description' => 'Configure settings for date views.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'date_views_settings',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'type' => MENU_LOCAL_TASK,
  );
  return $items;
}