API16:JNode/addChild
出典: Joomla! ドキュメンテーション
目次 |
Description
Add child to this node
Syntax
addChild(&$child)
| Parameter Name | Default Value | Description |
|---|---|---|
| &$child | 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); } }
Examples
<CodeExamplesForm />
自動更新 2012/05/24 12:28:20
