API15

API15:JModelList/getTotal

From Joomla! Documentation

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

Description

Method to get the total number of items for the data set.

[Edit Descripton]

Template:Description:JModelList/getTotal

Syntax

getTotal()


Returns

integer The total number of items available in the data set.

Defined in

libraries/joomla/application/component/modellist.php

Importing

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

Source Body

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

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

        // Load the total.
        $query = $this->_getListQuery();
        $total = (int) $this->_getListCount((string) $query);

        // Check for a database error.
        if ($this->_db->getErrorNum())
        {
                $this->setError($this->_db->getErrorMsg());
                return false;
        }

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

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

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

Examples

<CodeExamplesForm />