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 removing red link to edit, no existant pages
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===
Line 49: Line 49:
  format= ,,,
  format= ,,,
</dpl>
</dpl>
[[Category:Archived pages API15]]

Revision as of 18:39, 12 May 2013

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

<CodeExamplesForm />