You are here

function theme_calendar_week in Calendar 5

Same name and namespace in other branches
  1. 5.2 calendar.theme \theme_calendar_week()

Format a calendar view

Parameters

day: The day to display.

File

./calendar.theme, line 426

Code

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