JUser/setParam
From Joomla! Documentation
< API15:JUser
The "API15" 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 set a parameter
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax[edit]
setParam($key, $value)
Parameter Name | Default Value | Description |
---|---|---|
$key | $key Parameter key | |
$value | $value Parameter value |
Returns[edit]
mixed Set parameter value
Defined in[edit]
libraries/joomla/user/user.php
Importing[edit]
jimport( 'joomla.user.user' );
Source Body[edit]
function setParam( $key, $value )
{
return $this->_params->set( $key, $value );
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Note: At 20110201, the key=>value pairs which are arguments to function setParam (and function getParam) are stored in table jos_users, column params. This may change in the future.