JRegistry/merge: Difference between revisions
From Joomla! Documentation
No edit summary |
m clean up |
||
Line 2: | Line 2: | ||
Merge a JRegistry object into this one | Merge a JRegistry object into this one | ||
{{Description:JRegistry/merge}} | |||
{{subst:Description:JRegistry/merge}} | |||
===Syntax=== | ===Syntax=== | ||
Line 55: | Line 53: | ||
</source> | </source> | ||
{{subst:SeeAlso:JRegistry/merge}} | |||
{{SeeAlso:JRegistry/merge}} | |||
===Examples=== | ===Examples=== |
Revision as of 14:20, 24 March 2017
Description
Merge a JRegistry object into this one
{{subst:Description:JRegistry/merge}}
Syntax
merge(&$source)
Parameter Name | Default Value | Description |
---|---|---|
&$source | Source object ot merge |
Returns
boolean True on success
Defined in
libraries/joomla/registry/registry.php
Importing
jimport( 'joomla.registry.registry' );
Source Body
public function merge(&$source)
{
if ($source instanceof JRegistry) {
$sns = $source->getNameSpaces();
foreach ($sns as $ns) {
if (!isset($this->_registry[$ns])) {
// If namespace does not exist, make it and load the data
$this->makeNameSpace($ns);
}
// Load the variables into the registry's default namespace.
foreach ($source->toArray($ns) as $k => $v) {
if ($v != null) {
$this->_registry[$ns]['data']->$k = $v;
}
}
}
return true;
}
return false;
}
{{subst:SeeAlso:JRegistry/merge}}
Examples
<CodeExamplesForm />