44 if (is_array(
$path)) {
45 foreach (
$path as $k => $v) {
46 if ($v[
"child"] != $a_tref_id) {
47 $path[$k][
"skill_id"] = $v[
"child"];
48 $path[$k][
"tref_id"] = 0;
51 $path[$k][
"tref_id"] = $a_tref_id;
56 if (is_array($sub_path)) {
57 foreach ($sub_path as $s) {
59 $s[
"skill_id"] = $s[
"child"];
60 $s[
"tref_id"] = $a_tref_id;
70 if (is_array(
$path)) {
71 foreach (
$path as $k => $v) {
72 $path[$k][
"skill_id"] = $v[
"child"];
73 $path[$k][
"tref_id"] = 0;
78 if (is_array(
$path)) {
89 foreach (
$path as $p) {
90 if ($p[
"type"] !=
"skrt" && $p[
"child"] != $a_base_skill_id) {
91 $str .= $sep . $p[
"title"];
108 } elseif ($a_templates) {
111 array(
"skrt",
"sktp",
"sctp")
116 array(
"skrt",
"skll",
"scat",
"sktr")
121 foreach ($childs as $k =>
$c) {
122 $max = max(array(
$c[
"order_nr"], $max));
130 if (isset($this->by_type_data[$this->
getTreeId()])) {
137 "skl_tree JOIN skl_tree_node ON skl_tree.child=skl_tree_node.obj_id " .
138 " WHERE skl_tree.skl_tree_id = %s ",
142 $this->by_type_data[$this->
getTreeId()] = [];
144 $this->by_type_data[$this->
getTreeId()][$rec[
"parent"]][$rec[
"type"]][] = $rec;
152 foreach ($a_types as
$type) {
153 $type_childs = $this->by_type_data[$this->
getTreeId()][$a_node_id][
$type] ?? [];
154 $childs = array_merge($childs, $type_childs);
157 if ($a_order !=
"") {
static _lookupTemplateId(int $a_obj_id)
getChildsByTypeFilter($a_node_id, $a_types, $a_order="", $a_direction="ASC")
fetchAssoc(ilDBStatement $statement)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getChilds(int $a_node_id, string $a_order="", string $a_direction="ASC")
get child nodes of given node
setTreeTablePK(string $a_column_name)
set column containing primary key in tree table
getSkillTreePath(int $a_base_skill_id, int $a_tref_id=0)
getPathFull(int $a_endnode_id, int $a_startnode_id=0)
get path from a given startnode to a given endnode if startnode is not given the rootnode is startnod...
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...
getMaxOrderNr(int $a_par_id, bool $a_templates=false)
getSkillTreePathAsString(int $a_base_skill_id, int $a_tref_id=0)
queryF(string $query, array $types, array $values)
getPathId(int $a_endnode_id, int $a_startnode_id=0)
get path from a given startnode to a given endnode if startnode is not given the rootnode is startnod...
getTopParentNodeId(int $a_node_id)
__construct(Container $dic, ilPlugin $plugin)
__construct(int $a_tree_id=1)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)