theme_pager_first($text, $limit, $element = 0, $attributes = array())
drupal/includes/pager.inc, line 139
Format a "first 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_first($text, $limit, $element = 0, $attributes = array()) {
global $pager_from_array;
$output = '<div class="pager-first">';
if ($pager_from_array[$element]) {
$output .= '<a href="'. pager_link(pager_load_array(0, $element, $pager_from_array), $element, $attributes) .'">'. $text .'</a>';
}
else {
$output .= ' ';
}
$output .= '</div>';
return $output;
}