API15

API15:JCategoryNode/addChild

From Joomla! Documentation

Revision as of 00:23, 25 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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