API16

JObject/setProperties: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
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 preparing for archive only
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
Set the object properties based on a named array/hash.
Set the object properties based on a named array/hash.


<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JObject/setProperties|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JObject/setProperties}}
 
 


===Syntax===
===Syntax===
Line 48: Line 46:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JObject/setProperties|Edit See Also]]<nowiki>]</nowiki>
 
</span>
{{SeeAlso:JObject/setProperties}}


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=setProperties
  category=setProperties
  category=JObject
  category=JObject
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>

Latest revision as of 01:56, 25 March 2017

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