API16:JNode/addChild
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
Add child to this node
Syntax
addChild(&$child)
| Parameter Name | Default Value | Description |
|---|---|---|
| the child to be added |
Defined in
libraries/joomla/base/node.php
Importing
jimport( 'joomla.base.node' );
Source Body
function addChild(&$child) { if ($child instanceof Jnode) { $child->setParent($this); } }
[Edit See Also] SeeAlso:JNode/addChild
Examples
<CodeExamplesForm />
