function theme_pager_first in Drupal 7
Same name and namespace in other branches
- 4 includes/pager.inc \theme_pager_first()
- 5 includes/pager.inc \theme_pager_first()
- 6 includes/pager.inc \theme_pager_first()
Returns HTML for the "first page" link in a query pager.
Parameters
$variables: An associative array containing:
- text: The name (or image) of the link.
- element: An optional integer to distinguish between multiple pagers on one page.
- parameters: An associative array of query string parameters to append to the pager links.
Related topics
2 theme calls to theme_pager_first()
- theme_pager in includes/
pager.inc - Returns HTML for a query pager.
- theme_pager_previous in includes/
pager.inc - Returns HTML for the "previous page" link in a query pager.
File
- includes/
pager.inc, line 461 - Functions to aid in presenting database results as a set of pages.
Code
function theme_pager_first($variables) {
$text = $variables['text'];
$element = $variables['element'];
$parameters = $variables['parameters'];
global $pager_page_array;
$output = '';
// Nothing to do if there is no pager.
if (!isset($pager_page_array[$element])) {
return;
}
// If we are anywhere but the first page
if ($pager_page_array[$element] > 0) {
$output = theme('pager_link', array(
'text' => $text,
'page_new' => pager_load_array(0, $element, $pager_page_array),
'element' => $element,
'parameters' => $parameters,
));
}
return $output;
}