function theme_event_calendar_table in Event 5
Same name and namespace in other branches
- 5.2 event.theme \theme_event_calendar_table()
Format a calendar view
Parameters
day: The day to display.
File
- ./
event.theme, line 47
Code
function theme_event_calendar_table($op, $header, $rows, $attributes = array(), $caption = NULL) {
$output = theme("table", $header, $rows, $attributes, $caption);
return '<div class="event-calendar"><div class="table-view">' . $output . "</div></div>\n";
}