API15

API15:JCategoryNode/addChild

From Joomla! Documentation

Revision as of 13:52, 12 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

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

<CodeExamplesForm />