function theme_event_nav_next in Event 5
Same name and namespace in other branches
- 5.2 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 408
Code
function theme_event_nav_next($url, $attributes = array()) {
return '<span class="next">' . l('»', $url, $attributes) . '</span>';
}