JObject/ construct: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 4: | Line 4: | ||
===Syntax=== | ===Syntax=== | ||
| Line 36: | Line 36: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=__construct | category=__construct | ||
category=JObject | category=JObject | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
Latest revision as of 01:55, 25 March 2017
Description
Class constructor, overridden in descendant classes.
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);
}
}
Examples
Code Examples