You are here

function theme_calendar_nav_next in Calendar 5

Format the 'next' navigation controls for calendar calendars

Parameters

link: The url for the navigation

1 theme call to theme_calendar_nav_next()
calendar_nav in ./calendar.module
Function to construct back and next navigation from views arguments

File

./calendar.theme, line 307

Code

function theme_calendar_nav_next($url, $text = TRUE, $querystring = NULL) {
  return '<span class="next">' . l(($text ? t('next') : '') . ' »', $url, array(), !empty($querystring) ? $querystring : NULL) . '</span>';
}