API15

Difference between revisions of "JRegistry/loadObject"

From Joomla! Documentation

< API15:JRegistry
m (preparing for archive only)
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JRegistry/loadObject|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JRegistry/loadObject}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 67: Line 67:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JRegistry/loadObject|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JRegistry/loadObject}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=loadObject
 
  category=loadObject
 
  category=JRegistry
 
  category=JRegistry
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API15]]

Latest revision as of 20:04, 24 March 2017

The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Load the public variables of the object into the default namespace.

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

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[edit]

boolean True on success

Defined in[edit]

libraries/joomla/registry/registry.php

Importing[edit]

jimport( 'joomla.registry.registry' );

Source Body[edit]

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;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]