You are here

function calendar_date_select in Calendar 7

Same name and namespace in other branches
  1. 5.2 calendar.module \calendar_date_select()
  2. 6.2 calendar.module \calendar_date_select()
  3. 7.2 calendar.module \calendar_date_select()

A selector to jump to a new date in the calendar.

Parameters

unknown_type $view:

Return value

unknown

2 calls to calendar_date_select()
template_preprocess_calendar_main in theme/theme.inc
Display a calendar navigation and links
template_preprocess_calendar_main in calendar_multiday/theme/theme.inc
Display a calendar navigation and links

File

./calendar.module, line 355
Adds calendar filtering and displays to Views.

Code

function calendar_date_select($view) {
  return '<div class="calendar-date-select">' . drupal_render(drupal_get_form('calendar_date_select_form', $view)) . '</div>';
}