You are here

function theme_event_nav_next in Event 5.2

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

Format the 'next' navigation controls for event calendars

Parameters

link: The url for the navigation

File

./event.theme, line 420

Code

function theme_event_nav_next($url, $attributes = array()) {
  return '<span class="next">' . l('»', $url, $attributes) . '</span>';
}