function theme_pager_last
Returns HTML for the "last page" link in 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_last()
- theme_pager in includes/
pager.inc - Returns HTML for a query pager.
- theme_pager_next in includes/
pager.inc - Returns HTML for the "next page" link in a query pager.
File
-
includes/
pager.inc, line 596
Code
function theme_pager_last($variables) {
$text = $variables['text'];
$element = $variables['element'];
$parameters = $variables['parameters'];
global $pager_page_array, $pager_total;
$output = '';
// Nothing to do if there is no pager.
if (!isset($pager_page_array[$element]) || !isset($pager_total[$element])) {
return;
}
// If we are anywhere but the last page
if ($pager_page_array[$element] < $pager_total[$element] - 1) {
$output = theme('pager_link', array(
'text' => $text,
'page_new' => pager_load_array($pager_total[$element] - 1, $element, $pager_page_array),
'element' => $element,
'parameters' => $parameters,
));
}
return $output;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.