JRegistry/1.5
From Joomla! Documentation
< JRegistry(Difference between revisions)
(Layout updates) |
m (→See also: fixing link to API) |
||
| Line 85: | Line 85: | ||
<source lang="php">jimport( 'joomla.registry.registry' );</source> | <source lang="php">jimport( 'joomla.registry.registry' );</source> | ||
===See also=== | ===See also=== | ||
| − | * {{JVer|1.5}} '''JRegistry''' on [http://api.joomla.org/Joomla-Framework/Registry/JRegistry.html api.joomla.org] | + | * {{JVer|1.5}} '''JRegistry''' on [http://api.joomla.org/1.5/Joomla-Framework/Registry/JRegistry.html api.joomla.org] |
* {{JVer|1.5}} '''JRegistry source code''' on [[jframework15:registry/registry.php|JoomlaCode]] | * {{JVer|1.5}} '''JRegistry source code''' on [[jframework15:registry/registry.php|JoomlaCode]] | ||
* {{JVer|1.5}} Subpackage [[Subpackage Registry/1.5|Registry]] | * {{JVer|1.5}} Subpackage [[Subpackage Registry/1.5|Registry]] | ||
Latest revision as of 16:05, 13 February 2013
[edit]
JRegistry
[edit] Description
Description:JRegistry [Edit Descripton]
[edit] Methods
| Visibility | Method name | Description |
|---|---|---|
| public | __clone | |
| public | __construct | Constructor. |
| public | getNameSpaces | Get the list of namespaces. |
| public | getValue | Get a registry value. |
| public | loadArray | Load a associative array of values into the default namespace. |
| public | loadFile | Load the contents of a file into the registry. |
| public | loadINI | Load an INI string into the registry into the given namespace [or default if a namespace is not given]. |
| public | loadObject | Load the public variables of the object into the default namespace. |
| public | loadXML | Load an XML string into the registry into the given namespace [or default if a namespace is not given]. |
| public | makeNameSpace | Create a namespace. |
| public | merge | Merge a object into this one. |
| public | setValue | Set a registry value. |
| public | toArray | Transforms a namespace to an array. |
| public | toObject | Transforms a namespace to an object. |
| public | toString | Get a namespace in a given string format. |
| public | getInstance | Returns a reference to a global object, only creating it if it doesn't already exist. |
- Defined in libraries/joomla/registry/registry.php
- Extends JObject
- Extended by
[edit] Importing
jimport( 'joomla.registry.registry' );
[edit] See also
-
JRegistry on api.joomla.org
-
JRegistry source code on JoomlaCode
-
Subpackage Registry
- Other versions of JRegistry
SeeAlso:JRegistry [Edit See Also]
[edit] User contributed notes
<CodeExamplesForm />