API15

JPagination/getPagesCounter: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Create and return the pagination pages counter string, ie. Page 2 of 4 <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JPagination/...
 
m preparing for archive only
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:


<span class="editsection" style="font-size:76%;">
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JPagination/getPagesCounter|Edit Descripton]]<nowiki>]</nowiki>
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
</span>


{{Description:JPagination/getPagesCounter}}
<! removed transcluded page call, red link never existed >


===Syntax===
===Syntax===
Line 34: Line 34:


<span class="editsection" style="font-size:76%;">
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JPagination/getPagesCounter|Edit See Also]]<nowiki>]</nowiki>
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
</span>
{{SeeAlso:JPagination/getPagesCounter}}
<! removed transcluded page call, red link never existed >


===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=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>
[[Category:Archived pages API15]]

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