API16:JObject/ construct
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
Class constructor, overridden in descendant classes.
Description:JObject/ construct
Syntax
__construct($properties=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $properties | null | $properties Either and associative array or another object to set the initial properties of the object. |
Defined in
libraries/joomla/base/object.php
Importing
jimport( 'joomla.base.object' );
Source Body
public function __construct($properties = null) { if ($properties !== null) { $this->setProperties($properties); } }
[Edit See Also] SeeAlso:JObject/ construct
Examples
<CodeExamplesForm />
