JTree
From Joomla! Documentation
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.
JTree is a class that allows you to create and walk through object-trees. Used in conjunction with the JNode class.
Defined in[edit]
libraries/joomla/base/tree.php
Methods[edit]
Method name | Description |
---|---|
__construct | |
addChild | |
getParent | |
reset |
Importing[edit]
jimport( 'joomla.base.tree' );
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.