API16:JException/setProperties
From Joomla! Documentation
Description
Set the object properties based on a named array/hash
<! 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/error/exception.php
Importing
jimport( 'joomla.error.exception' );
Source Body
public 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 transcluded page call, red link never existed >
Examples
Code Examples