33 $this->lng = $DIC->language();
44 $root_id = $this->tree->readRootId();
45 $root_node = $this->tree->getNodeData($root_id);
46 unset($root_node[
"child"]);
47 $root_node[
"id"] = $root_id .
":0";
48 $root_node[
"cskill_id"] = $root_id .
":0";
60 $this->include_drafts = $a_val;
80 $this->include_outdated = $a_val;
101 $id_parts = explode(
":", $a_id);
102 $skl_tree_id = $id_parts[0];
103 $skl_template_tree_id = $id_parts[1];
106 == $skl_template_tree_id)) {
107 $node_data = $this->tree->getNodeData($skl_tree_id);
108 $node_data[
"parent"] = $node_data[
"parent"] .
":0";
110 $node_data = $this->tree->getNodeData($skl_template_tree_id);
111 $node_data[
"parent"] = $skl_tree_id .
":" . $node_data[
"parent"];
114 unset($node_data[
"child"]);
115 unset($node_data[
"skl_tree_id"]);
116 unset($node_data[
"lft"]);
117 unset($node_data[
"rgt"]);
118 unset($node_data[
"depth"]);
120 $node_data[
"id"] = $a_id;
122 $cid_parts = explode(
":", $cid);
123 $node_data[
"skill_id"] = $cid_parts[0];
124 $node_data[
"tref_id"] = $cid_parts[1];
125 $node_data[
"cskill_id"] = $cid;
140 $a_parent_id_parts = explode(
":", $a_parent_id);
141 $a_parent_skl_tree_id = $a_parent_id_parts[0];
142 $a_parent_skl_template_tree_id = $a_parent_id_parts[1];
144 if ($a_parent_skl_template_tree_id == 0) {
145 $childs = $this->tree->getChildsByTypeFilter($a_parent_skl_tree_id, array(
"scat",
"skll",
"sktr"),
"order_nr");
147 $childs = $this->tree->getChildsByTypeFilter($a_parent_skl_template_tree_id, array(
"sktp",
"sctp"),
"order_nr");
152 foreach ($childs as $k =>
$c) {
153 if ($a_parent_skl_template_tree_id > 0) {
155 $child_id = $a_parent_skl_tree_id .
":" .
$c[
"child"];
156 } elseif (!in_array(
$c[
"type"], array(
"sktr",
"sctr"))) {
158 $child_id =
$c[
"child"] .
":0";
163 unset($childs[$k][
"child"]);
164 unset($childs[$k][
"skl_tree_id"]);
165 unset($childs[$k][
"lft"]);
166 unset($childs[$k][
"rgt"]);
167 unset($childs[$k][
"depth"]);
168 $childs[$k][
"id"] = $child_id;
172 $cid_parts = explode(
":", $cid);
173 $childs[$k][
"skill_id"] = $cid_parts[0];
174 $childs[$k][
"tref_id"] = $cid_parts[1];
175 $childs[$k][
"cskill_id"] = $cid;
176 $childs[$k][
"parent"] = $a_parent_id;
178 $this->parent[
$c[
"id"]] = $a_parent_id;
182 in_array($a_parent_id, $this->drafts)) {
183 $this->drafts[] = $child_id;
187 in_array($a_parent_id, $this->outdated)) {
188 $this->outdated[] = $child_id;
214 $id_parts = explode(
":", $a_cskill_id);
215 if ($id_parts[1] == 0) {
216 $id = $id_parts[0] .
":0";
218 $id = $id_parts[1] .
":" . $id_parts[0];
231 $id_parts = explode(
":", $a_vtree_id);
232 if ($id_parts[1] == 0) {
234 $skill_id = $id_parts[0];
238 $tref_id = $id_parts[0];
239 $skill_id = $id_parts[1];
241 return $skill_id .
":" . $tref_id;
252 $id_parts = explode(
":", $a_cskill_id);
253 if ($id_parts[1] == 0) {
254 $id = $id_parts[0] .
":0";
256 $id = $id_parts[1] .
":" . $id_parts[0];
273 $a_parent_id_parts = explode(
":", $a_node[
"id"]);
274 $a_parent_skl_tree_id = $a_parent_id_parts[0];
275 $a_parent_skl_template_tree_id = $a_parent_id_parts[1];
278 $title = $a_node[
"title"];
281 if ($a_node[
"type"] ==
"skrt") {
282 $lng->txt(
"skmg_skills");
284 if ($a_node[
"type"] ==
"sktr") {
301 $id_parts = explode(
":", $a_cskill_id);
302 if ($id_parts[1] == 0) {
303 $id = $id_parts[0] .
":0";
305 $id = $id_parts[1] .
":" . $id_parts[0];
311 if (!$a_only_basic || in_array($node[
"type"], array(
"skll",
"sktp")) ||
330 foreach ($childs as
$c) {
331 if (!$a_only_basic || in_array($c[
"type"], array(
"skll",
"sktp")) ||
347 return in_array($a_node_id, $this->drafts);
358 return in_array($a_node_id, $this->outdated);
373 $db = $DIC->database();
375 if (self::$order_node_data == null) {
376 $node_data = array();
377 $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)");
378 while ($rec = $db->fetchAssoc($set)) {
379 $node_data[$rec[
"child"]] = array(
380 "parent" => $rec[
"parent"],
381 "lft" => $rec[
"lft"],
382 "order_nr" => $rec[
"order_nr"],
385 self::$order_node_data = $node_data;
387 $node_data = self::$order_node_data;
390 uasort($c_skill_ids,
function (
$a,
$b) use ($node_data, $a_skill_id_key, $a_tref_id_key) {
394 $cskilla =
$a[$a_skill_id_key] .
":" .
$a[$a_tref_id_key];
395 $cskillb =
$b[$a_skill_id_key] .
":" .
$b[$a_tref_id_key];
407 return ($node_data[$ua[0]][
"order_nr"] - $node_data[$ua[1]][
"order_nr"]);
411 if ($vida[1] > 0 && $vidb[1] > 0) {
414 return ($node_data[$ua[0]][
"order_nr"] - $node_data[$ua[1]][
"order_nr"]);
428 while ($node_data[
$a][
"parent"] != 0) {
429 $a = $node_data[
$a][
"parent"];
432 return array_reverse($path);
438 $path_a = $this->
getPath(
$a, $node_data);
439 $path_b = $this->
getPath(
$b, $node_data);
440 foreach ($path_a as $k => $v) {
441 if ($v != $path_b[$k]) {
442 return array($v, $path_b[$k]);
isOutdated($a_node_id)
Is outdated.
getChildsOfNodeForCSkillId($a_cskill_id)
Get childs of node for cskill id.
getVTreeIdForCSkillId($a_cskill_id)
Get tree id for common skill id.
getChildsOfNode($a_parent_id)
Get childs of node.
static _lookupType($a_obj_id)
Lookup Type.
getOrderedNodeset($c_skill_ids, $a_skill_id_key="", $a_tref_id_key="")
Get ordererd nodeset for common skill ids.
getNodeTitle($a_node)
Get node content.
setIncludeDrafts($a_val)
Set include drafts.
__construct()
Constructor.
isDraft($a_node_id)
Is draft.
getRootNode()
Get root node.
static _lookupTemplateId($a_obj_id)
Lookup template ID.
getIncludeOutdated()
Get include outdated.
getCSkillIdForVTreeId($a_vtree_id)
Get common skill id for tree id.
getFirstUncommonAncestors($a, $b, $node_data)
getIncludeDrafts()
Get include drafts.
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
static _lookupStatus($a_obj_id)
Lookup Status.
getSubTreeForCSkillId($a_cskill_id, $a_only_basic=false)
Get sub tree.
for($i=6; $i< 13; $i++) for($i=1; $i< 13; $i++) $d
__getSubTreeRec($id, &$result, $a_only_basic)
Get subtree, internal.
setIncludeOutdated($a_val)
Set include outdated.