You are here

function theme_event_nav_prev in Event 5.2

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

Format the 'previous' navigation controls for event calendars

Parameters

link: The url for the navigation

File

./event.theme, line 430

Code

function theme_event_nav_prev($url, $attributes = array()) {
  return '<span class="prev">' . l('«', $url, $attributes) . '</span>';
}