API16:JObject/setProperties
From Joomla! Documentation
Description
Set the object properties based on a named array/hash.
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;
}
Examples
Code Examples