API15:JCategoryNode/addChild
From Joomla! Documentation
Description
Adds a child to the current element of the Categorytree
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
addChild(&$node)
| Parameter Name | Default Value | Description |
|---|---|---|
Returns
void
Defined in
libraries/joomla/application/categories.php
Importing
jimport( 'joomla.application.categories' );
Source Body
public function addChild(&$node)
{
$node->setParent($this);
$this->_children[] = & $node;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples