API15:JModel/getState
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 model state variables
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
getState($property=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $property | null | Optional parameter name |
Returns
object The property where specified, the state object where omitted
Defined in
libraries/joomla/application/component/model.php
Importing
jimport( 'joomla.application.component.model' );
Source Body
function getState($property = null) { return $property === null ? $this->_state : $this->_state->get($property); }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
