API15

JUser/setParam

From Joomla! Documentation

< API15:JUser
Revision as of 13:57, 12 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

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 >

Examples[edit]

<CodeExamplesForm />

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

===Description===

Method to set a parameter



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);
}



Examples[edit]

Code Examples[edit]

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