JRegistry/loadINI: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Load an INI string into the registry into the given namespace [or default if a namespace is not given]
<span class="editsection" style="font-size:76%;">
<nowiki>[</n... |
m preparing for archive only |
||
| (One intermediate revision by the same user not shown) | |||
| Line 2: | Line 2: | ||
Load an INI string into the registry into the given namespace [or default if a namespace is not given] | Load an INI string into the registry into the given namespace [or default if a namespace is not given] | ||
===Syntax=== | ===Syntax=== | ||
| Line 68: | Line 66: | ||
</source> | </source> | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=loadINI | category=loadINI | ||
category=JRegistry | category=JRegistry | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
Latest revision as of 01:59, 25 March 2017
Description
Load an INI string into the registry into the given namespace [or default if a namespace is not given]
Syntax
loadINI($data, $namespace=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $data | INI formatted string to load into the registry | |
| $namespace | null | Namespace to load the INI string into [optional] |
Returns
boolean True on success
Defined in
libraries/joomla/registry/registry.php
Importing
jimport( 'joomla.registry.registry' );
Source Body
public function loadINI($data, $namespace = null)
{
// Load a string into the given namespace [or default namespace if not given]
$handler = &JRegistryFormat::getInstance('INI');
// If namespace is not set, get the default namespace
if ($namespace == null) {
$namespace = $this->_defaultNameSpace;
}
if (!isset($this->_registry[$namespace])) {
// If namespace does not exist, make it and load the data
$this->makeNameSpace($namespace);
$this->_registry[$namespace]['data'] = &$handler->stringToObject($data);
} else {
// Get the data in object format
$ns = $handler->stringToObject($data);
/*
* We want to leave groups that are already in the namespace and add the
* groups loaded into the namespace. This overwrites any existing group
* with the same name
*/
foreach (get_object_vars($ns) as $k => $v) {
$this->_registry[$namespace]['data']->$k = $v;
}
}
return true;
}
Examples
Code Examples