function theme_event_upcoming_block in Event 5.2
Same name and namespace in other branches
- 5 event.theme \theme_event_upcoming_block()
Format the upcoming event block for event calendars
Parameters
items: An array of themed upcoming events
1 theme call to theme_event_upcoming_block()
- event_block_upcoming in ./
event.module - Creates a block that contains upcoming events.
File
- ./
event.theme, line 488
Code
function theme_event_upcoming_block($items) {
$output = theme("item_list", $items);
return $output;
}