You are here

function theme_event_calendar_week in Event 5.2

Same name and namespace in other branches
  1. 5 event.theme \theme_event_calendar_week()

Format a calendar view

Parameters

day: The day to display.

File

./event.theme, line 25

Code

function theme_event_calendar_week($op, $header, $rows, $attributes = array(), $caption = NULL) {
  $output = theme("table", $header, $rows, $attributes, $caption);
  return '<div class="event-calendar"><div class="week-view">' . $output . "</div></div>\n";
}