Skip to content
Snippets Groups Projects
Commit 9dec4430 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #27980 by Neil Drumm: removed unused function.

parent 63a10fdc
No related branches found
No related tags found
No related merge requests found
......@@ -265,35 +265,6 @@ function theme_pager_last($text, $limit, $element = 0, $attributes = array()) {
return $output;
}
/**
* Format a summary of the current pager position, such as "6 through 10 of 52".
*
* @param $limit
* The number of query results to display per page.
* @param $element
* An optional integer to distinguish between multiple pagers on one page.
* @param $format
* A printf-style format string for customizing the pager text.
* @return
* An HTML string that generates this piece of the query pager.
*
* @ingroup themeable
*/
function theme_pager_detail($limit, $element = 0, $format = '%d through %d of %d.') {
global $pager_page_array, $pager_total, $pager_total_items;
$output = '<div class="pager-detail">';
if ($pager_total[$element] > 1) {
$output .= sprintf($format,
$pager_page_array[$element] * $limit + 1,
min($pager_total_items[$element], ($pager_page_array[$element] + 1) * $limit),
$pager_total_items[$element]);
}
$output .= '</div>';
return $output;
}
/**
* Format a list of nearby pages with additional query results.
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment