API15:JRegistry/getInstance
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
Returns a reference to a global JRegistry object, only creating it if it doesn't already exist.
Description:JRegistry/getInstance
Syntax
& getInstance($id, $namespace= 'default')
| Parameter Name | Default Value | Description |
|---|---|---|
| $id | $id An ID for the registry instance | |
| $namespace | 'default' | $namespace The default namespace for the registry object [optional] |
Returns
object The object.
Defined in
libraries/joomla/registry/registry.php
Importing
jimport( 'joomla.registry.registry' );
Source Body
function &getInstance($id, $namespace = 'default') { static $instances; if (!isset ($instances)) { $instances = array (); } if (empty ($instances[$id])) { $instances[$id] = new JRegistry($namespace); } return $instances[$id]; }
[Edit See Also] SeeAlso:JRegistry/getInstance
Examples
<CodeExamplesForm />
