You are here

function theme_calendar_nav_prev in Calendar 5

Format the 'previous' navigation controls for calendar calendars

Parameters

link: The url for the navigation

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

File

./calendar.theme, line 317

Code

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