API17

Difference between revisions of "JRegistryFormatXml:: getXmlChildren"

From Joomla! Documentation

(Layout updates)
m (preparing for archive only)
 
(6 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
=={{JVer|11.1}} JRegistryFormatXml::_getXmlChildren==
 
=={{JVer|11.1}} JRegistryFormatXml::_getXmlChildren==
 
===Description===
 
===Description===
Method to build a level of the XML string -- called recursively.  
+
Method to build a level of the XML string—called recursively.  
 +
 
 +
 
  
{{Description:JRegistryFormatXml::_getXmlChildren}}
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JRegistryFormatXml::_getXmlChildren|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
===Since===
 
{{JVer|2.0 }}
 
===Synopsis===
 
 
<source lang="php">
 
<source lang="php">
protected JRegistryFormatXml::_getXmlChildren (&$node, $var, $nodeName)
+
protected function _getXmlChildren (
 +
        &$node
 +
        $var
 +
        $nodeName
 +
)
 
</source>
 
</source>
 
{| class="wikitable"
 
{| class="wikitable"
Line 37: Line 36:
 
|-
 
|-
 
|}
 
|}
===Returns===
+
* '''Returns''' void
void
+
* '''Defined''' on line 134 of libraries/joomla/registry/format/xml.php
===Defined in===
+
* '''Since''' {{JVer|11.1}}
libraries/joomla/registry/format/xml.php (line 134)
 
* see source code in [[jplatform:registry/format/xml.php#cl-134|BitBucket]]
 
===Referenced by===
 
 
===See also===
 
===See also===
<span class="editsection" style="font-size:76%;">
+
* {{JVer|11.1}} '''JRegistryFormatXml::_getXmlChildren source code''' on [[jplatform:registry/format/xml.php#cl-126|BitBucket]]
<nowiki>[</nowiki>[[SeeAlso:JRegistryFormatXml::_getXmlChildren|Edit See Also]]<nowiki>]</nowiki>
+
* {{JVer|11.1}} Class [[API17:JRegistryFormatXml|JRegistryFormatXml]]
</span>
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage Registry|Registry]]
* [[JRegistryFormatXml/11.1|JRegistryFormatXml]]
+
* [[API17:JRegistryFormatXml:: getXmlChildren|Other versions of JRegistryFormatXml::_getXmlChildren]]
* [[JRegistryFormatXml::_getXmlChildren|Other versions of this method]]
+
 
{{SeeAlso:JRegistryFormatXml::_getXmlChildren}}
+
 
===Examples===
+
===User contributed notes===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JRegistryFormatXml::_getXmlChildren
 
category=JRegistryFormatXml::_getXmlChildren
category=CodeExample
+
namespace=CodeExample
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JRegistryFormatXml]][[Category:JRegistryFormatXml::_getXmlChildren]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 22:35, 24 March 2017

The "API17" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Joomla 11.1 JRegistryFormatXml::_getXmlChildren[edit]

Description[edit]

Method to build a level of the XML string—called recursively.


protected function _getXmlChildren (
        &$node
        $var
        $nodeName
)
Parameter Type Default Description
&$node object SimpleXMLElement object to attach children.
$var object Object that represents a node of the xml document.
$nodeName string The name to use for node elements.
  • Returns void
  • Defined on line 134 of libraries/joomla/registry/format/xml.php
  • Since Joomla 11.1

See also[edit]


User contributed notes[edit]

Code Examples[edit]