JObject/setProperties: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Set the object properties based on a named array/hash.
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JObject/setProperties|Edit D... |
m clean up |
||
| Line 2: | Line 2: | ||
Set the object properties based on a named array/hash. | Set the object properties based on a named array/hash. | ||
{{Description:JObject/setProperties}} | |||
{{subst:Description:JObject/setProperties}} | |||
===Syntax=== | ===Syntax=== | ||
| Line 48: | Line 46: | ||
</source> | </source> | ||
{{subst:SeeAlso:JObject/setProperties}} | |||
{{SeeAlso:JObject/setProperties}} | |||
===Examples=== | ===Examples=== | ||
Revision as of 14:16, 24 March 2017
Description
Set the object properties based on a named array/hash.
{{subst:Description:JObject/setProperties}}
Syntax
setProperties($properties)
| Parameter Name | Default Value | Description |
|---|---|---|
| $properties | $properties Either and associative array or another object. |
Returns
boolean
Defined in
libraries/joomla/base/object.php
Importing
jimport( 'joomla.base.object' );
Source Body
public function setProperties($properties)
{
if (is_array($properties) || is_object($properties))
{
foreach ((array) $properties as $k => $v)
{
// Use the set function which might be overriden.
$this->set($k, $v);
}
return true;
}
return false;
}
{{subst:SeeAlso:JObject/setProperties}}
Examples
<CodeExamplesForm />