You are here

function date_test_menu in Date 7.2

Same name and namespace in other branches
  1. 7.3 tests/date_test/date_test.module \date_test_menu()

Implements hook_menu().

File

tests/date_test/date_test.module, line 11
Contains date test implementations.

Code

function date_test_menu() {
  $items['date-test/form'] = array(
    'title' => 'Test form with date element',
    'description' => "Form with date element to make form related tests",
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'date_test_sample_form',
    ),
    'access arguments' => array(
      'access content',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}