24 require_once (
"./Services/Tree/classes/class.ilTree.php");
45 parent::__construct($a_id);
59 function getChilds($a_node_id, $a_order =
"", $a_direction =
"ASC")
63 if (!isset($a_node_id))
65 $message =
"No node_id given!";
66 $this->log->error($message);
82 $order_clause =
"ORDER BY ".$a_order.
" ".$a_direction;
86 $order_clause =
"ORDER BY ".$this->table_tree.
".lft";
92 SELECT * FROM ".$this->table_tree.
" ".
95 "AND ".$this->table_tree.
".".$this->tree_pk.
" = %s ".
97 array(
'integer',
'integer'),
array($a_node_id,$this->tree_id));
99 $count = $ilDB->numRows(
$r);
103 while (
$row = $ilDB->fetchAssoc(
$r))
109 $childs[$count - 1][
"last"] =
true;
fetchNodeData($a_row)
get data of parent node from tree and object_data private
__construct($a_id=0)
Constructor.
getChilds($a_node_id, $a_order="", $a_direction="ASC")
get child nodes of given node public
setTableNames($a_table_tree, $a_table_obj_data, $a_table_obj_reference="")
set table names The primary key of the table containing your object_data must be 'obj_id' You may use...
Tree class data representation in hierachical trees using the Nested Set Model with Gaps by Joe Celco...
Create styles array
The data for the language used.
setTreeTablePK($a_column_name)
set column containing primary key in tree table public