API16:JRegistry/toObject
From Joomla! Documentation
Description
Transforms a namespace to an object
Syntax
toObject($namespace=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $namespace | null | Namespace to return [optional: null returns the default namespace] |
Returns
object An an object holding the namespace data
Defined in
libraries/joomla/registry/registry.php
Importing
jimport( 'joomla.registry.registry' );
Source Body
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
Code Examples