54 $this->
lng = $DIC->language();
55 $this->tree = $DIC->skills()->internal()->factory()->tree()->getTreeById($tree_id);
63 $root_id = $this->tree->readRootId();
64 $root_node = $this->tree->getNodeData($root_id);
65 unset($root_node[
"child"]);
66 $root_node[
"id"] = $root_id .
":0";
67 $root_node[
"cskill_id"] = $root_id .
":0";
74 $this->include_drafts = $a_val;
84 $this->include_outdated = $a_val;
92 public function getNode(
string $a_vtree_id): array
94 $id_parts = explode(
":", $a_vtree_id);
95 $skl_tree_id = (
int) $id_parts[0];
96 $skl_template_tree_id = isset($id_parts[1]) ? (
int) $id_parts[1] : 0;
98 if ($skl_template_tree_id == 0
100 $node_data = $this->tree->getNodeData($skl_tree_id);
101 if (isset($node_data[
"parent"])) {
102 $node_data[
"parent"] = $node_data[
"parent"] .
":0";
105 $node_data = $this->tree->getNodeData($skl_template_tree_id);
106 $node_data[
"parent"] = $skl_tree_id .
":" . $node_data[
"parent"];
109 unset($node_data[
"child"]);
110 unset($node_data[
"skl_tree_id"]);
111 unset($node_data[
"lft"]);
112 unset($node_data[
"rgt"]);
113 unset($node_data[
"depth"]);
115 $node_data[
"id"] = $a_vtree_id;
117 $cid_parts = explode(
":", $cid);
118 $node_data[
"skill_id"] = $cid_parts[0];
119 $node_data[
"tref_id"] = $cid_parts[1];
120 $node_data[
"cskill_id"] = $cid;
130 $a_parent_id_parts = explode(
":", $a_parent_id);
131 $a_parent_skl_tree_id = (
int) $a_parent_id_parts[0];
132 $a_parent_skl_template_tree_id = isset($a_parent_id_parts[1]) ? (
int) $a_parent_id_parts[1] : 0;
134 if ($a_parent_skl_template_tree_id == 0) {
135 $childs = $this->tree->getChildsByTypeFilter($a_parent_skl_tree_id, array(
"scat",
"skll",
"sktr"),
"order_nr");
137 $childs = $this->tree->getChildsByTypeFilter($a_parent_skl_template_tree_id, array(
"sktp",
"sctp"),
"order_nr");
142 foreach ($childs as $k =>
$c) {
143 if ($a_parent_skl_template_tree_id > 0) {
145 $child_id = $a_parent_skl_tree_id .
":" .
$c[
"child"];
146 } elseif (!in_array(
$c[
"type"], array(
"sktr",
"sctr"))) {
148 $child_id =
$c[
"child"] .
":0";
153 unset($childs[$k][
"child"]);
154 unset($childs[$k][
"skl_tree_id"]);
155 unset($childs[$k][
"lft"]);
156 unset($childs[$k][
"rgt"]);
157 unset($childs[$k][
"depth"]);
158 $childs[$k][
"id"] = $child_id;
160 $cid_parts = explode(
":", $cid);
161 $childs[$k][
"skill_id"] = $cid_parts[0];
162 $childs[$k][
"tref_id"] = $cid_parts[1];
163 $childs[$k][
"cskill_id"] = $cid;
164 $childs[$k][
"parent"] = $a_parent_id;
168 in_array($a_parent_id, $this->drafts)) {
169 $this->drafts[] = $child_id;
173 in_array($a_parent_id, $this->outdated)) {
174 $this->outdated[] = $child_id;
179 foreach ($drafts as
$d) {
184 foreach ($outdated as
$d) {
194 $id_parts = explode(
":", $a_cskill_id);
195 if (!isset($id_parts[1]) || $id_parts[1] == 0) {
196 $id = $id_parts[0] .
":0";
198 $id = $id_parts[1] .
":" . $id_parts[0];
205 $id_parts = explode(
":", $a_vtree_id);
206 if (!isset($id_parts[1]) || $id_parts[1] == 0) {
208 $skill_id = $id_parts[0];
212 $tref_id = $id_parts[0];
213 $skill_id = $id_parts[1];
215 return $skill_id .
":" . $tref_id;
220 $id_parts = explode(
":", $a_cskill_id);
221 if (!isset($id_parts[1]) || $id_parts[1] == 0) {
222 $id = $id_parts[0] .
":0";
224 $id = $id_parts[1] .
":" . $id_parts[0];
233 $a_parent_id_parts = explode(
":", $a_node[
"id"]);
234 $a_parent_skl_tree_id = (
int) $a_parent_id_parts[0];
235 $a_parent_skl_template_tree_id = isset($a_parent_id_parts[1]) ? (
int) $a_parent_id_parts[1] : 0;
238 $title = $a_node[
"title"];
241 if ($a_node[
"type"] ==
"skrt") {
242 $lng->
txt(
"skmg_skills");
243 } elseif ($a_node[
"type"] ==
"sktr") {
255 $id_parts = explode(
":", $a_cskill_id);
256 if (!isset($id_parts[1]) || $id_parts[1] == 0) {
257 $id = $id_parts[0] .
":0";
259 $id = $id_parts[1] .
":" . $id_parts[0];
265 if (!$a_only_basic || isset($node[
"type"]) && in_array($node[
"type"], array(
"skll",
"sktp")) ||
279 foreach ($childs as
$c) {
280 if (!$a_only_basic || in_array($c[
"type"], array(
"skll",
"sktp")) ||
284 $result = array_merge($result, $this->
__getSubTreeRec((
int) $c[
"id"], $a_only_basic));
290 public function isDraft(
string $a_node_id): bool
292 return in_array($a_node_id, $this->drafts);
297 return in_array($a_node_id, $this->outdated);
308 public function getOrderedNodeset(array $c_skill_ids,
string $a_skill_id_key =
"",
string $a_tref_id_key =
""): array
312 $db = $DIC->database();
314 if (self::$order_node_data == null) {
316 $set = $db->query(
"SELECT t.child, t.parent, t.lft, n.order_nr FROM skl_tree t JOIN skl_tree_node n ON (t.child = n.obj_id)");
317 while ($rec = $db->fetchAssoc($set)) {
318 $node_data[(
int) $rec[
"child"]] = array(
319 "parent" => null === $rec[
"parent"] ? null : (
int) $rec[
"parent"],
320 "lft" => (
int) $rec[
"lft"],
321 "order_nr" => (
int) $rec[
"order_nr"],
324 self::$order_node_data = $node_data;
326 $node_data = self::$order_node_data;
329 uasort($c_skill_ids,
function (
$a,
$b) use ($node_data, $a_skill_id_key, $a_tref_id_key):
int {
333 $cskilla =
$a[$a_skill_id_key] .
":" .
$a[$a_tref_id_key];
334 $cskillb =
$b[$a_skill_id_key] .
":" .
$b[$a_tref_id_key];
345 if (is_array($ua) && isset($node_data[$ua[0]]) && isset($node_data[$ua[1]])) {
346 return ($node_data[$ua[0]][
"order_nr"] - $node_data[$ua[1]][
"order_nr"]);
350 if ($vida[1] > 0 && $vidb[1] > 0) {
352 if (is_array($ua) && isset($node_data[$ua[0]]) && isset($node_data[$ua[1]])) {
353 return ($node_data[$ua[0]][
"order_nr"] - $node_data[$ua[1]][
"order_nr"]);
366 protected function getPath(
string $a, array $node_data): array
369 if (isset($node_data[$a]) && isset($node_data[$a][
"parent"])) {
370 while ($node_data[$a][
"parent"] != 0) {
371 $a = $node_data[
$a][
"parent"];
375 return array_reverse(
$path);
385 $path_a = $this->
getPath($a, $node_data);
386 $path_b = $this->
getPath($b, $node_data);
387 foreach ($path_a as $k => $v) {
388 if ($v != $path_b[$k]) {
389 return array($v, $path_b[$k]);
static _lookupTemplateId(int $a_obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupStatus(int $a_obj_id)
__construct(int $tree_id)
isDraft(string $a_node_id)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setIncludeOutdated(bool $a_val)
setIncludeDrafts(bool $a_val)
static _lookupType(int $a_obj_id)
getVTreeIdForCSkillId(string $a_cskill_id)
getSubTreeForCSkillId(string $a_cskill_id, bool $a_only_basic=false)
static array $order_node_data
getOrderedNodeset(array $c_skill_ids, string $a_skill_id_key="", string $a_tref_id_key="")
Get ordererd nodeset for common skill ids.
isOutdated(string $a_node_id)
getNodeTitle(array $a_node)
getNode(string $a_vtree_id)
getFirstUncommonAncestors(string $a, string $b, array $node_data)
get first uncommon ancestors of $a and $b in $node_data
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
getCSkillIdForVTreeId(string $a_vtree_id)
__getSubTreeRec(string $id, bool $a_only_basic)
getChildsOfNodeForCSkillId(string $a_cskill_id)
for($i=6; $i< 13; $i++) for($i=1; $i< 13; $i++) $d
getChildsOfNode(string $a_parent_id)
getPath(string $a, array $node_data)
get path in node data