19 declare(strict_types=1);
55 $this->
lng = $DIC->language();
56 $this->tree = $DIC->skills()->internal()->factory()->tree()->getTreeById($tree_id);
64 $root_id = $this->tree->readRootId();
65 $root_node = $this->tree->getNodeData($root_id);
66 unset($root_node[
"child"]);
67 $root_node[
"id"] = $root_id .
":0";
68 $root_node[
"cskill_id"] = $root_id .
":0";
75 $this->include_drafts = $a_val;
85 $this->include_outdated = $a_val;
93 public function getNode(
string $a_vtree_id): array
95 $id_parts = explode(
":", $a_vtree_id);
96 $skl_tree_id = (
int) $id_parts[0];
97 $skl_template_tree_id = isset($id_parts[1]) ? (
int) $id_parts[1] : 0;
99 if ($skl_template_tree_id == 0
101 $node_data = $this->tree->getNodeData($skl_tree_id);
102 if (isset($node_data[
"parent"])) {
103 $node_data[
"parent"] = $node_data[
"parent"] .
":0";
106 $node_data = $this->tree->getNodeData($skl_template_tree_id);
107 $node_data[
"parent"] = $skl_tree_id .
":" . $node_data[
"parent"];
110 unset($node_data[
"child"]);
111 unset($node_data[
"skl_tree_id"]);
112 unset($node_data[
"lft"]);
113 unset($node_data[
"rgt"]);
114 unset($node_data[
"depth"]);
116 $node_data[
"id"] = $a_vtree_id;
118 $cid_parts = explode(
":", $cid);
119 $node_data[
"skill_id"] = $cid_parts[0];
120 $node_data[
"tref_id"] = $cid_parts[1];
121 $node_data[
"cskill_id"] = $cid;
131 $a_parent_id_parts = explode(
":", $a_parent_id);
132 $a_parent_skl_tree_id = (
int) $a_parent_id_parts[0];
133 $a_parent_skl_template_tree_id = isset($a_parent_id_parts[1]) ? (
int) $a_parent_id_parts[1] : 0;
135 if ($a_parent_skl_template_tree_id == 0) {
136 $childs = $this->tree->getChildsByTypeFilter($a_parent_skl_tree_id, array(
"scat",
"skll",
"sktr"),
"order_nr");
138 $childs = $this->tree->getChildsByTypeFilter($a_parent_skl_template_tree_id, array(
"sktp",
"sctp"),
"order_nr");
143 foreach ($childs as $k =>
$c) {
144 if ($a_parent_skl_template_tree_id > 0) {
146 $child_id = $a_parent_skl_tree_id .
":" .
$c[
"child"];
147 } elseif (!in_array(
$c[
"type"], array(
"sktr",
"sctr"))) {
149 $child_id =
$c[
"child"] .
":0";
154 unset($childs[$k][
"child"]);
155 unset($childs[$k][
"skl_tree_id"]);
156 unset($childs[$k][
"lft"]);
157 unset($childs[$k][
"rgt"]);
158 unset($childs[$k][
"depth"]);
159 $childs[$k][
"id"] = $child_id;
161 $cid_parts = explode(
":", $cid);
162 $childs[$k][
"skill_id"] = $cid_parts[0];
163 $childs[$k][
"tref_id"] = $cid_parts[1];
164 $childs[$k][
"cskill_id"] = $cid;
165 $childs[$k][
"parent"] = $a_parent_id;
169 in_array($a_parent_id, $this->drafts)) {
170 $this->drafts[] = $child_id;
174 in_array($a_parent_id, $this->outdated)) {
175 $this->outdated[] = $child_id;
180 foreach ($drafts as
$d) {
185 foreach ($outdated as
$d) {
195 $id_parts = explode(
":", $a_cskill_id);
196 if (!isset($id_parts[1]) || $id_parts[1] == 0) {
197 $id = $id_parts[0] .
":0";
199 $id = $id_parts[1] .
":" . $id_parts[0];
206 $id_parts = explode(
":", $a_vtree_id);
207 if (!isset($id_parts[1]) || $id_parts[1] == 0) {
209 $skill_id = $id_parts[0];
213 $tref_id = $id_parts[0];
214 $skill_id = $id_parts[1];
216 return $skill_id .
":" . $tref_id;
221 $id_parts = explode(
":", $a_cskill_id);
222 if (!isset($id_parts[1]) || $id_parts[1] == 0) {
223 $id = $id_parts[0] .
":0";
225 $id = $id_parts[1] .
":" . $id_parts[0];
234 $a_parent_id_parts = explode(
":", $a_node[
"id"]);
235 $a_parent_skl_tree_id = (
int) $a_parent_id_parts[0];
236 $a_parent_skl_template_tree_id = isset($a_parent_id_parts[1]) ? (
int) $a_parent_id_parts[1] : 0;
239 $title = $a_node[
"title"];
242 if ($a_node[
"type"] ==
"skrt") {
243 $lng->
txt(
"skmg_skills");
244 } elseif ($a_node[
"type"] ==
"sktr") {
256 $id_parts = explode(
":", $a_cskill_id);
257 if (!isset($id_parts[1]) || $id_parts[1] == 0) {
258 $id = $id_parts[0] .
":0";
260 $id = $id_parts[1] .
":" . $id_parts[0];
266 if (!$a_only_basic || isset($node[
"type"]) && in_array($node[
"type"], array(
"skll",
"sktp")) ||
280 foreach ($childs as
$c) {
281 if (!$a_only_basic || in_array($c[
"type"], array(
"skll",
"sktp")) ||
285 $result = array_merge($result, $this->
__getSubTreeRec($c[
"id"], $a_only_basic));
291 public function isDraft(
string $a_node_id): bool
293 return in_array($a_node_id, $this->drafts);
298 return in_array($a_node_id, $this->outdated);
309 public function getOrderedNodeset(array $c_skill_ids,
string $a_skill_id_key =
"",
string $a_tref_id_key =
""): array
313 $db = $DIC->database();
315 if (self::$order_node_data ==
null) {
317 $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)");
318 while ($rec = $db->fetchAssoc($set)) {
319 $node_data[(
int) $rec[
"child"]] = array(
320 "parent" =>
null === $rec[
"parent"] ?
null : (
int) $rec[
"parent"],
321 "lft" => (
int) $rec[
"lft"],
322 "order_nr" => (
int) $rec[
"order_nr"],
325 self::$order_node_data = $node_data;
327 $node_data = self::$order_node_data;
330 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)
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...
setIncludeOutdated(bool $a_val)
setIncludeDrafts(bool $a_val)
static _lookupType(int $a_obj_id)
getVTreeIdForCSkillId(string $a_cskill_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
getFirstUncommonAncestors(string $a, string $b, array $node_data)
get first uncommon ancestors of $a and $b in $node_data
$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)
getChildsOfNode(string $a_parent_id)
getPath(string $a, array $node_data)
get path in node data