You are here

function theme_event_calendar_month in Event 5.2

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

Format a calendar view

Parameters

day: The day to display.

1 theme call to theme_event_calendar_month()
event_calendar_month in ./event.module
Displays a monthly event calendar.

File

./event.theme, line 14

Code

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