API15:JUser/defParam
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Method to set a default parameter if it does not exist
Syntax
defParam($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 defParam( $key, $value ) { return $this->_params->def( $key, $value ); }
[Edit See Also] SeeAlso:JUser/defParam
Examples
<CodeExamplesForm />
