API16

Difference between revisions of "JTree"

From Joomla! Documentation

(New page: <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{Description:JTree}} ===Defined in=== libraries...)
 
(→‎Examples: Fix examples section)
Line 36: Line 36:
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 +
namespace=CodeExample
 
  category=JTree
 
  category=JTree
 
  category=CodeExample
 
  category=CodeExample
Line 41: Line 42:
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 +
reset=categories
 
</dpl>
 
</dpl>

Revision as of 03:07, 10 July 2013

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

[Edit Descripton] Template:Description:JTree

Defined in[edit]

libraries/joomla/base/tree.php

Methods[edit]

Method name Description
__construct
addChild
getParent
reset

Importing[edit]

jimport( 'joomla.base.tree' );

[Edit See Also] Template:SeeAlso:JTree

Examples[edit]

<CodeExamplesForm />

Tree Structures with JTree and JNote

JTree and JNode can be used to create and process simple tree structures. Let's see how this works for JTree with a simple example.

We want to create the Family Tree of the Smiths. Granny Barbara has two daughters. Stefanie and Aunti Sue. Stefanie has two children, Peter and Stewie. Auntie Sue doesn't have children.

Let's take a look how we can represent this familiy in an object tree.

$barbara = new JNode();
$stefanie = new JNode();
$sue = new JNode();
$peter = new JNode();
$stewie = new JNode();

$familyTree = new JTree(); //pointer set to root-node
$familyTree->addChild($barbara, true) //pointer set to barbara
$familyTree->addChild($sue) //$sue added as child to barbara, pointer still on barbara
$familyTree->addChild($stefanie, true) //$stefanie added as child to barbara, pointer on stefanie
$familyTree->addChild($peter, true) //$peter added as child to stefanie, pointer on peter
$familyTree->getParent() // pointer set to parent of peter, which is stefanie
$familyTree->addChild($stewie) //$stewie added as child to stefanie, pointer on stefanie
Batch1211 19:52, 22 March 2010 (EDT) Edit comment