API16

JObject/ construct: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Class constructor, overridden in descendant classes. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JObject/__construct|Edit Descr...
 
m clean up
Line 2: Line 2:
Class constructor, overridden in descendant classes.
Class constructor, overridden in descendant classes.


<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JObject/__construct|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JObject/__construct}}
 
{{subst:Description:JObject/__construct}}


===Syntax===
===Syntax===
Line 37: Line 35:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JObject/__construct|Edit See Also]]<nowiki>]</nowiki>
{{subst:SeeAlso:JObject/__construct}}
</span>
{{SeeAlso:JObject/__construct}}


===Examples===
===Examples===

Revision as of 14:16, 24 March 2017

Description

Class constructor, overridden in descendant classes.


{{subst: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);
        }
}


{{subst:SeeAlso:JObject/__construct}}

Examples

<CodeExamplesForm />