You are here

function date_repeat_menu in Date 6.2

Implementation of hook_menu.

File

date_repeat/date_repeat.module, line 31
This module creates a form element that allows users to select repeat rules for a date, and reworks the result into an iCal RRULE string that can be stored in the database.

Code

function date_repeat_menu() {
  $items = array();
  $items['date_repeat_get_exception_form_ajax'] = array(
    'page callback' => 'date_repeat_get_exception_form_ajax',
    'page arguments' => array(
      1,
      2,
    ),
    'file' => 'date_repeat_form.inc',
    'access arguments' => array(
      'access content',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}