API16:JRegistry/toObject
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
Transforms a namespace to an object
Description:JRegistry/toObject
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; }
[Edit See Also] SeeAlso:JRegistry/toObject
Examples
<CodeExamplesForm />
