API16

JModelList/getPagination

From Joomla! Documentation

< API16:JModelList
Revision as of 17:36, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Method to get a JPagination object for the data set. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JModelList/getPagination|Edit ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Method to get a JPagination object for the data set.

[Edit Descripton]

Template:Description:JModelList/getPagination

Syntax[edit]

getPagination()


Returns[edit]

object A object for the data set.

Defined in[edit]

libraries/joomla/application/component/modellist.php

Importing[edit]

jimport( 'joomla.application.component.modellist' );

Source Body[edit]

public function getPagination()
{
        // Get a storage key.
        $store = $this->_getStoreId('getPagination');

        // Try to load the data from internal storage.
        if (!empty($this->_cache[$store])) {
                return $this->_cache[$store];
        }

        // Create the pagination object.
        jimport('joomla.html.pagination');
        $limit = (int) $this->getState('list.limit') - (int) $this->getState('list.links');
        $page = new JPagination($this->getTotal(), (int) $this->getState('list.start'), $limit);

        // Add the object to the internal cache.
        $this->_cache[$store] = $page;

        return $this->_cache[$store];
}

[Edit See Also] Template:SeeAlso:JModelList/getPagination

Examples[edit]

<CodeExamplesForm />