You are here

function jcalendar_menu in Calendar 5.2

Same name and namespace in other branches
  1. 6.2 jcalendar/jcalendar.module \jcalendar_menu()

Implemetation of hook_menu()

File

jcalendar/jcalendar.module, line 45
jQuery Calendar UI features.

Code

function jcalendar_menu($may_cache) {
  $items = array();
  if (!$may_cache) {
    $items[] = array(
      'path' => 'jcalendar/getnode',
      'title' => 'Get Calendar Node',
      'callback' => 'get_calendar_node',
      'callback arguments' => array(
        arg(2),
        arg(3),
      ),
      'access' => true,
      'type' => MENU_CALLBACK,
    );
    return $items;
  }
}