theme_pager_last($text, $limit, $element = 0, $attributes = array())
drupal/includes/pager.inc, line 233
Format a "last page" link.
$text The name (or image) of the link.
$limit The number of query results to display per page.
$element An optional integer to distinguish between multiple pagers on one page.
$attributes An associative array of query string parameters to append to the pager links.
An HTML string that generates this piece of the query pager.
| Name | Description |
|---|---|
| Themeable functions | Functions that display HTML, and which can be customized by themes. |
function theme_pager_last($text, $limit, $element = 0, $attributes = array()) {
global $pager_from_array, $pager_total;
$output = '<div class="pager-last">';
$last_num = (($pager_total[$element] % $limit) ? ($pager_total[$element] % $limit) : $limit);
$from_new = pager_load_array(($pager_total[$element] - $last_num), $element, $pager_from_array);
if ($from_new[$element] < ($pager_from_array[$element] + $limit)) {
$output .= theme('pager_next', $text, $limit, $element, 1, $attributes);
}
else if (($from_new[$element] > $pager_from_array[$element]) && ($from_new[$element] > 0) && ($from_new[$element] < $pager_total[$element])) {
$output .= '<a href="'. pager_link($from_new, $element, $attributes) .'">'. $text .'</a>';
}
else {
$output .= ' ';
}
$output .= '</div>';
return $output;
}