API15:JPagination/getPagesCounter
From Joomla! Documentation
Description
Create and return the pagination pages counter string, ie. Page 2 of 4
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
getPagesCounter()
Returns
string Pagination pages counter string
Defined in
libraries/joomla/html/pagination.php
Importing
jimport( 'joomla.html.pagination' );
Source Body
function getPagesCounter()
{
// Initialize variables
$html = null;
if ($this->get('pages.total') > 1) {
$html .= JText::sprintf('JPAGE_CURRENT_OF_TOTAL', $this->get('pages.current'), $this->get('pages.total'));
}
return $html;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples