API15:JApplication/setUserState
From Joomla! Documentation
Description
Sets the value of a user state variable.
<! removed transcluded page call, red link never existed >
Syntax
setUserState($key, $value)
Parameter Name | Default Value | Description |
---|---|---|
$key | The path of the state. | |
$value | The value of the variable. |
Returns
mixed The previous state, if one existed.
Defined in
libraries/joomla/application/application.php
Importing
jimport( 'joomla.application.application' );
Source Body
function setUserState( $key, $value )
{
$session =& JFactory::getSession();
$registry =& $session->get('registry');
if(!is_null($registry)) {
return $registry->setValue($key, $value);
}
return null;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples