API16

JRegistry/toObject

From Joomla! Documentation

< API16:JRegistry

The "API16" 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]

Transforms a namespace to an object



Syntax[edit]

toObject($namespace=null)
Parameter Name Default Value Description
$namespace null Namespace to return [optional: null returns the default namespace]

Returns[edit]

object An an object holding the namespace data

Defined in[edit]

libraries/joomla/registry/registry.php

Importing[edit]

jimport( 'joomla.registry.registry' );

Source Body[edit]

public function toObject($namespace = null)
{
        // If namespace is not set, get the default namespace
        if ($namespace == null) {
                $namespace = $this->_defaultNameSpace;
        }

        // Get the namespace
        $ns = & $this->_registry[$namespace]['data'];

        return $ns;
}



Examples[edit]

Code Examples[edit]