API17

JModelList: Difference between revisions

From Joomla! Documentation

m User contributed notes: moving preparation
m moving preparation
Line 14: Line 14:
|-
|-
|public  
|public  
|[[JModelList::__construct/11.1|__construct]]
|[[API17:JModelList::__construct|__construct]]
|Constructor.  
|Constructor.  
|-
|-
|public  
|public  
|[[JModelList::getItems/11.1|getItems]]
|[[API17:JModelList::getItems|getItems]]
|Method to get an array of data items.  
|Method to get an array of data items.  
|-
|-
|public  
|public  
|[[JModelList::getPagination/11.1|getPagination]]
|[[API17:JModelList::getPagination|getPagination]]
|Method to get a  object for the data set.  
|Method to get a  object for the data set.  
|-
|-
|public  
|public  
|[[JModelList::getstart/11.1|getstart]]
|[[API17:JModelList::getstart|getstart]]
|Method to get the starting number of items for the data set.  
|Method to get the starting number of items for the data set.  
|-
|-
|public  
|public  
|[[JModelList::getTotal/11.1|getTotal]]
|[[API17:JModelList::getTotal|getTotal]]
|Method to get the total number of items for the data set.  
|Method to get the total number of items for the data set.  
|-
|-
|public  
|public  
|[[JModelList::getUserStateFromRequest/11.1|getUserStateFromRequest]]
|[[API17:JModelList::getUserStateFromRequest|getUserStateFromRequest]]
|Gets the value of a user state variable and sets it in the session This is the same as the method in  except that this also can optionally force you back to the first page when a filter has changed.  
|Gets the value of a user state variable and sets it in the session This is the same as the method in  except that this also can optionally force you back to the first page when a filter has changed.  
|-
|-
|protected  
|protected  
|[[JModelList::getListQuery/11.1|getListQuery]]
|[[API17:JModelList::getListQuery|getListQuery]]
|Method to get a  object for retrieving the data set from a database.  
|Method to get a  object for retrieving the data set from a database.  
|-
|-
|protected  
|protected  
|[[JModelList::getStoreId/11.1|getStoreId]]
|[[API17:JModelList::getStoreId|getStoreId]]
|Method to get a store id based on the model configuration state.  
|Method to get a store id based on the model configuration state.  
|-
|-
|protected  
|protected  
|[[JModelList::populateState/11.1|populateState]]
|[[API17:JModelList::populateState|populateState]]
|Method to auto-populate the model state.  
|Method to auto-populate the model state.  
|-
|-
|}
|}
* '''Defined in''' libraries/joomla/application/component/modellist.php
* '''Defined in''' libraries/joomla/application/component/modellist.php
* '''Extends''' [[JModel/11.1|JModel]]
* '''Extends''' [[API17:JModel|JModel]]
===Importing===
===Importing===
<source lang="php">jimport( 'joomla.application.component.modellist' );</source>
<source lang="php">jimport( 'joomla.application.component.modellist' );</source>
===See also===
===See also===
* {{JVer|11.1}} '''JModelList source code''' on [[jplatform:application/component/modellist.php|BitBucket]]
* {{JVer|11.1}} '''JModelList source code''' on [[jplatform:application/component/modellist.php|BitBucket]]
* {{JVer|11.1}} Subpackage [[Subpackage Application/11.1|Application]]
* {{JVer|11.1}} Subpackage [[API17:Subpackage Application|Application]]
* [[JModelList|Other versions of JModelList]]
* [[API17:JModelList|Other versions of JModelList]]
{{SeeAlso:JModelList}}
{{SeeAlso:JModelList}}
<span class="editsection" style="font-size:76%;">
<span class="editsection" style="font-size:76%;">

Revision as of 02:14, 12 May 2013

Joomla 11.1 JModelList

Description

Template:Description:JModelList [Edit Descripton]

Methods

Visibility Method name Description
public __construct Constructor.
public getItems Method to get an array of data items.
public getPagination Method to get a object for the data set.
public getstart Method to get the starting number of items for the data set.
public getTotal Method to get the total number of items for the data set.
public getUserStateFromRequest Gets the value of a user state variable and sets it in the session This is the same as the method in except that this also can optionally force you back to the first page when a filter has changed.
protected getListQuery Method to get a object for retrieving the data set from a database.
protected getStoreId Method to get a store id based on the model configuration state.
protected populateState Method to auto-populate the model state.
  • Defined in libraries/joomla/application/component/modellist.php
  • Extends JModel

Importing

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

See also

Template:SeeAlso:JModelList [Edit See Also]

User contributed notes

<CodeExamplesForm />