You are here

function theme_event_links in Event 5

Same name and namespace in other branches
  1. 5.2 event.theme \theme_event_links()

Format the links for event calendars

Parameters

links: An array of links to render

view: The current view being rendered

1 theme call to theme_event_links()
event_page in ./event.module
Displays a page containing event information. The page layout defaults to a graphical calendar.

File

./event.theme, line 430

Code

function theme_event_links($links, $view) {
  return theme('links', $links);
}