function calendar_date_select in Calendar 7.2
Same name and namespace in other branches
- 5.2 calendar.module \calendar_date_select()
- 6.2 calendar.module \calendar_date_select()
- 7 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 359 - Adds calendar filtering and displays to Views.
Code
function calendar_date_select($view) {
$output = drupal_get_form('calendar_date_select_form', $view);
return '<div class="calendar-date-select">' . drupal_render($output) . '</div>';
}