API15:JObject/setProperties
From Joomla! Documentation
Description
Set the object properties based on a named array/hash
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
setProperties($properties)
| Parameter Name | Default Value | Description |
|---|---|---|
| $properties | mixed Either and associative array or another object |
Returns
boolean
Defined in
libraries/joomla/base/object.php
Importing
jimport( 'joomla.base.object' );
Source Body
function setProperties( $properties )
{
$properties = (array) $properties; //cast to an array
if (is_array($properties))
{
foreach ($properties as $k => $v) {
$this->$k = $v;
}
return true;
}
return false;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples