API17

JModelList::getUserStateFromRequest: Difference between revisions

From Joomla! Documentation

m →User contributed notes: moving preparation
m →See also: moving preparation
Line 55: Line 55:
===See also===
===See also===
* {{JVer|11.1}} '''JModelList::getUserStateFromRequest source code''' on [[jplatform:application/component/modellist.php#cl-312|BitBucket]]
* {{JVer|11.1}} '''JModelList::getUserStateFromRequest source code''' on [[jplatform:application/component/modellist.php#cl-312|BitBucket]]
* {{JVer|11.1}} Class [[JModelList/11.1|JModelList]]
* {{JVer|11.1}} Class [[API17:JModelList|JModelList]]
* {{JVer|11.1}} Subpackage [[Subpackage_Application/11.1|Application]]
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Application|Application]]
* [[JModelList::getUserStateFromRequest|Other versions of JModelList::getUserStateFromRequest]]
* [[API17:JModelList::getUserStateFromRequest|Other versions of JModelList::getUserStateFromRequest]]
{{SeeAlso:JModelList::getUserStateFromRequest}}
{{SeeAlso:JModelList::getUserStateFromRequest}}
<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::getUserStateFromRequest

Description

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.

Template:Description:JModelList::getUserStateFromRequest [Edit Descripton]

public function getUserStateFromRequest (
        $key
        $request
        $default=null
        $type= 'none'
        $resetPage=true
)
Parameter Type Default Description
$key string The key of the user state variable.
$request string The name of the variable passed in a request.
$default string null The default value for the variable if not found. Optional.
$type string 'none' Filter for the variable, for valid values see . Optional.
$resetPage boolean true If true, the limitstart in request is set to zero
  • Returns The request user state.
  • Defined on line 320 of libraries/joomla/application/component/modellist.php
  • Since Joomla 11.1

See also

Template:SeeAlso:JModelList::getUserStateFromRequest [Edit See Also]

User contributed notes

<CodeExamplesForm />