API15:JObject/setProperties
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
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
<CodeExamplesForm />
