API15:JRegistry/loadObject
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
Load the public variables of the object into the default namespace.
Description:JRegistry/loadObject
Syntax
loadObject(&$object, $namespace=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| &$object | $object The object holding the public vars to load | |
| $namespace | null | $namespace Namespace to load the INI string into [optional] |
Returns
boolean True on success
Defined in
libraries/joomla/registry/registry.php
Importing
jimport( 'joomla.registry.registry' );
Source Body
function loadObject(&$object, $namespace = null) { // If namespace is not set, get the default namespace if ($namespace == null) { $namespace = $this->_defaultNameSpace; } if (!isset($this->_registry[$namespace])) { // If namespace does not exist, make it and load the data $this->makeNameSpace($namespace); } /* * We want to leave groups that are already in the namespace and add the * groups loaded into the namespace. This overwrites any existing group * with the same name */ if (is_object( $object )) { foreach (get_object_vars($object) as $k => $v) { if (substr($k, 0,1) != '_' || $k == '_name') { $this->_registry[$namespace]['data']->$k = $v; } } } return true; }
[Edit See Also] SeeAlso:JRegistry/loadObject
Examples
<CodeExamplesForm />
