API15

Difference between revisions of "JUser/setParam"

From Joomla! Documentation

< API15:JUser
(New page: ===Description=== Method to set a parameter <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </spa...)
 
m (removing red link to edit, no existant pages)
Line 3: Line 3:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JUser/setParam|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JUser/setParam}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 43: Line 43:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JUser/setParam|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JUser/setParam}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 58: Line 58:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API15]]

Revision as of 13:57, 12 May 2013

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