19 declare(strict_types=1);
48 public function getChilds(
int $a_node_id,
string $a_order =
"",
string $a_direction =
"ASC"): array
51 $ilDB = $DIC->database();
53 if (!isset($a_node_id)) {
69 if (!empty($a_order)) {
70 $order_clause =
"ORDER BY " . $a_order .
" " . $a_direction;
72 $order_clause =
"ORDER BY " . $this->table_tree .
".lft";
77 SELECT * FROM " . $this->table_tree .
" " .
79 "WHERE parent = %s " .
80 "AND " . $this->table_tree .
"." . $this->tree_pk .
" = %s " .
82 array(
'integer',
'integer'),
83 array($a_node_id,$this->tree_id)
89 while ($row =
$ilDB->fetchAssoc(
$r)) {
94 $childs[$count - 1][
"last"] =
true;
buildJoin()
build join depending on table settings private
setTreeTablePK(string $a_column_name)
set column containing primary key in tree table
setTableNames(string $a_table_tree, string $a_table_obj_data, string $a_table_obj_reference="")
set table names The primary key of the table containing your object_data must be 'obj_id' You may use...
getChilds(int $a_node_id, string $a_order="", string $a_direction="ASC")
get child nodes of given node
fetchNodeData(array $a_row)
get data of parent node from tree and object_data
__construct(Container $dic, ilPlugin $plugin)
__construct(int $a_id=0)
Constructor.