API15

JPagination/getPagesCounter: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m preparing for archive only
 
Line 39: Line 39:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=getPagesCounter
  category=getPagesCounter
  category=JPagination
  category=JPagination
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 01:00, 25 March 2017

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