API15:JUser/getParam
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 get a parameter value
Syntax
getParam($key, $default=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $key | $key Parameter key | |
| $default | null | $default Parameter default value |
Returns
mixed The value or the default if it did not exist
Defined in
libraries/joomla/user/user.php
Importing
jimport( 'joomla.user.user' );
Source Body
function getParam( $key, $default = null ) { return $this->_params->get( $key, $default ); }
[Edit See Also] SeeAlso:JUser/getParam
Examples
<CodeExamplesForm />
