function theme_pager_first in Drupal 5
Same name and namespace in other branches
- 4 includes/pager.inc \theme_pager_first()
- 6 includes/pager.inc \theme_pager_first()
- 7 includes/pager.inc \theme_pager_first()
Format a "first page" link.
Parameters
$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.
$parameters: An associative array of query string parameters to append to the pager links.
Return value
An HTML string that generates this piece of the query pager.
Related topics
2 theme calls to theme_pager_first()
- theme_pager in includes/
pager.inc - Format a query pager.
- theme_pager_previous in includes/
pager.inc - Format a "previous page" link.
File
- includes/
pager.inc, line 151 - Functions to aid in presenting database results as a set of pages.
Code
function theme_pager_first($text, $limit, $element = 0, $parameters = array()) {
global $pager_page_array;
$output = '';
// If we are anywhere but the first page
if ($pager_page_array[$element] > 0) {
$output = theme('pager_link', $text, pager_load_array(0, $element, $pager_page_array), $element, $parameters, array(
'class' => 'pager-first',
));
}
return $output;
}