API16

API16:JUser/setParam

From Joomla! Documentation

Description

Method to set a parameter



Syntax

setParam($key, $value)
Parameter Name Default Value Description
$key $key Parameter key
$value $value Parameter value

Returns

mixed Set parameter value

Defined in

libraries/joomla/user/user.php

Importing

jimport( 'joomla.user.user' );

Source Body

function setParam($key, $value)
{
        return $this->_params->set($key, $value);
}



Examples

Code Examples

No Title

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.

Spicetrader 19:24, 1 February 2011 (CST) Edit comment