68 $this->db = $DIC->database();
71 $this->skill_manager = $DIC->skills()->internal()->manager();
72 $this->skill_tree_factory = $DIC->skills()->internal()->factory()->tree();
73 $this->skill_factory = $DIC->skills()->internal()->factory();
74 $this->tree_repo = $DIC->skills()->internal()->repo()->getTreeRepo();
77 public function setMode(
string $a_val): void
92 $this->selected_nodes = $a_val;
108 $this->selected_profiles = $a_val;
134 return array(
"5.1.0",
"7.0",
"8.0");
137 protected function getXmlNamespace(
string $a_entity,
string $a_schema_version): string
139 return "http://www.ilias.de/xml/Services/Skill/" . $a_entity;
145 protected function getTypes(
string $a_entity,
string $a_version): array
147 if ($a_entity ==
"skmg") {
148 switch ($a_version) {
160 if ($a_entity ==
"skee") {
161 switch ($a_version) {
169 if ($a_entity ==
"skl_subtree") {
170 switch ($a_version) {
175 "SklTreeId" =>
"integer",
176 "TopNode" =>
"integer",
177 "Child" =>
"integer",
178 "Parent" =>
"integer",
179 "Depth" =>
"integer",
182 "Description" =>
"text",
183 "SelfEval" =>
"integer",
184 "OrderNr" =>
"integer",
185 "Status" =>
"integer",
186 "TemplateId" =>
"integer" 190 if ($a_entity ==
"skl_templ_subtree") {
191 switch ($a_version) {
196 "SklTreeId" =>
"integer",
197 "TopNode" =>
"integer",
198 "Child" =>
"integer",
199 "Parent" =>
"integer",
200 "Depth" =>
"integer",
203 "Description" =>
"text",
204 "SelfEval" =>
"integer",
205 "OrderNr" =>
"integer",
206 "Status" =>
"integer" 210 if ($a_entity ==
"skl_level") {
211 switch ($a_version) {
216 "LevelId" =>
"integer",
217 "SkillId" =>
"integer",
220 "Description" =>
"text" 224 if ($a_entity ==
"skl_prof") {
225 switch ($a_version) {
231 "Description" =>
"text" 237 "Description" =>
"text",
238 "SkillTreeId" =>
"integer" 242 if ($a_entity ==
"skl_local_prof") {
243 switch ($a_version) {
248 "Description" =>
"text",
255 "Description" =>
"text",
256 "RefId" =>
"integer",
257 "SkillTreeId" =>
"integer" 261 if ($a_entity ==
"skl_prof_level") {
262 switch ($a_version) {
265 "ProfileId" =>
"integer",
266 "BaseSkillId" =>
"integer",
267 "TrefId" =>
"integer",
268 "LevelId" =>
"integer" 273 "ProfileId" =>
"integer",
274 "BaseSkillId" =>
"integer",
275 "TrefId" =>
"integer",
276 "LevelId" =>
"integer",
277 "OrderNr" =>
"integer" 284 public function readData(
string $a_entity,
string $a_version, array $a_ids): void
290 if (!is_array($a_ids)) {
291 $a_ids = array($a_ids);
293 if ($a_entity ==
"skmg") {
294 switch ($a_version) {
297 if ($this->
getMode() == self::MODE_SKILLS) {
298 $this->data[] = array(
"Mode" =>
"Skills");
299 } elseif ($this->
getMode() == self::MODE_PROFILES) {
300 $this->data[] = array(
"Mode" =>
"Profiles");
310 if ($a_entity ==
"skee") {
311 switch ($a_version) {
313 foreach ($a_ids as
$id) {
314 if ($this->
getMode() == self::MODE_SKILLS) {
315 $this->data[] = array(
319 } elseif ($this->
getMode() == self::MODE_PROFILES) {
320 $this->data[] = array(
330 if ($a_entity ==
"skl_subtree") {
331 switch ($a_version) {
335 foreach ($a_ids as
$id) {
336 $skill_tree = $this->tree_repo->getTreeForNodeId($id);
337 $sub = $skill_tree->getSubTree($skill_tree->getNodeData($id));
338 foreach ($sub as $s) {
340 "SELECT * FROM skl_templ_ref " .
341 " WHERE skl_node_id = " .
$ilDB->quote($s[
"child"],
"integer")
343 $rec =
$ilDB->fetchAssoc($set);
345 $top_node = ($s[
"child"] ==
$id)
348 $this->data[] = array(
349 "SklTreeId" => $s[
"skl_tree_id"],
350 "TopNode" => $top_node,
351 "Child" => $s[
"child"],
352 "Parent" => $s[
"parent"],
353 "Depth" => $s[
"depth"],
354 "Type" => $s[
"type"],
355 "Title" => $s[
"title"],
356 "Description" => $s[
"description"],
357 "SelfEval" => $s[
"self_eval"],
358 "OrderNr" => $s[
"order_nr"],
359 "Status" => $s[
"status"],
360 "TemplateId" => (
int) ($rec[
"templ_id"] ?? 0)
369 if ($a_entity ==
"skl_templ_subtree") {
370 switch ($a_version) {
374 foreach ($a_ids as
$id) {
375 $skill_tree = $this->tree_repo->getTreeForNodeId($id);
376 $sub = $skill_tree->getSubTree($skill_tree->getNodeData($id));
377 foreach ($sub as $s) {
378 $top_node = ($s[
"child"] ==
$id)
381 $this->data[] = array(
382 "SklTreeId" => $s[
"skl_tree_id"],
383 "TopNode" => $top_node,
384 "Child" => $s[
"child"],
385 "Parent" => $s[
"parent"],
386 "Depth" => $s[
"depth"],
387 "Type" => $s[
"type"],
388 "Title" => $s[
"title"],
389 "Description" => $s[
"description"],
390 "SelfEval" => $s[
"self_eval"],
391 "OrderNr" => $s[
"order_nr"],
392 "Status" => $s[
"status"]
401 if ($a_entity ==
"skl_level") {
402 switch ($a_version) {
407 " FROM skl_level WHERE " .
408 $ilDB->in(
"skill_id", $a_ids,
false,
"integer") .
" ORDER BY skill_id ASC, nr ASC");
414 if ($a_entity ==
"skl_prof") {
415 switch ($a_version) {
419 " FROM skl_profile WHERE " .
420 $ilDB->in(
"id", $a_ids,
false,
"integer"));
424 "SELECT id, title, description FROM skl_profile " .
425 " WHERE " .
$ilDB->in(
"id", $a_ids,
false,
"integer")
427 while ($rec =
$ilDB->fetchAssoc($set)) {
430 "Title" => $rec[
"title"],
431 "Description" => $rec[
"description"],
440 if ($a_entity ==
"skl_local_prof") {
441 switch ($a_version) {
443 foreach ($a_ids as $obj_id) {
445 $obj_ref_id = end($obj_ref_id);
446 $profiles = $this->skill_manager->getProfileManager()->getLocalProfilesForObject($obj_ref_id);
448 foreach ($profiles as $p) {
449 $profile_ids[] = $p[
"id"];
452 "SELECT * FROM skl_profile " .
453 " WHERE " .
$ilDB->in(
"id", $profile_ids,
false,
"integer")
455 while ($rec =
$ilDB->fetchAssoc($set)) {
458 "Title" => $rec[
"title"],
459 "Description" => $rec[
"description"],
460 "RefId" => $obj_ref_id
466 foreach ($a_ids as $obj_id) {
468 $obj_ref_id = end($obj_ref_id);
469 $profiles = $this->skill_manager->getProfileManager()->getLocalProfilesForObject($obj_ref_id);
471 foreach ($profiles as $p) {
472 $profile_ids[] = $p[
"id"];
475 "SELECT * FROM skl_profile " .
476 " WHERE " .
$ilDB->in(
"id", $profile_ids,
false,
"integer")
478 while ($rec =
$ilDB->fetchAssoc($set)) {
481 "Title" => $rec[
"title"],
482 "Description" => $rec[
"description"],
483 "RefId" => $obj_ref_id,
493 if ($a_entity ==
"skl_prof_level") {
494 switch ($a_version) {
497 " FROM skl_profile_level WHERE " .
498 $ilDB->in(
"profile_id", $a_ids,
false,
"integer"));
503 " FROM skl_profile_level WHERE " .
504 $ilDB->in(
"profile_id", $a_ids,
false,
"integer"));
518 ?array $a_rec = null,
526 $deps[
"skee"][
"ids"] = $a_ids;
530 if (!isset($a_rec[
"Id"]) || is_null($a_rec[
"Id"])) {
533 $skill_tree = $this->skill_tree_factory->getTreeById((
int) $a_rec[
"Id"]);
536 if ($this->
getMode() == self::MODE_SKILLS) {
539 $exp_types = array(
"skll",
"scat",
"sctr",
"sktr");
540 if (!isset($sel_nodes) || count($sel_nodes) === 0) {
541 $childs = $skill_tree->getChildsByTypeFilter($skill_tree->readRootId(), $exp_types);
542 $skl_subtree_deps = [];
543 foreach ($childs as
$c) {
544 $skl_subtree_deps[] = (
int) $c[
"child"];
547 $skl_subtree_deps = [];
548 foreach ($sel_nodes as $n) {
550 $skl_subtree_deps[] = $n;
557 if (is_array($skl_subtree_deps)) {
558 foreach ($skl_subtree_deps as
$id) {
562 $sub = $skill_tree->getSubTree($skill_tree->getNodeData($id),
true, [
"sktr"]);
563 foreach ($sub as $s) {
564 $ref_nodes[$s[
"child"]] = $s[
"child"];
570 $set =
$ilDB->query(
"SELECT DISTINCT(templ_id) FROM skl_templ_ref " .
571 " WHERE " .
$ilDB->in(
"skl_node_id", $ref_nodes,
false,
"integer"));
572 while ($rec =
$ilDB->fetchAssoc($set)) {
573 $deps[
"skl_templ_subtree"][
"ids"][] = (
int) $rec[
"templ_id"];
577 $deps[
"skl_subtree"][
"ids"] = $skl_subtree_deps;
578 } elseif ($this->
getMode() == self::MODE_PROFILES) {
580 $deps[
"skl_prof"][
"ids"][] = $p_id;
586 case "skl_templ_subtree":
588 if (in_array($a_rec[
"Type"], array(
"skll",
"sktp"))) {
589 $deps[
"skl_level"][
"ids"][] = $a_rec[
"Child"];
594 case "skl_local_prof":
595 $deps[
"skl_prof_level"][
"ids"][] = $a_rec[
"Id"] ?? null;
607 string $a_schema_version
609 $skill_tree = $this->skill_tree_factory->getTreeById($this->
getSkillTreeId());
610 $skill_tree_root_id = $skill_tree->readRootId();
611 $tree_node_manager = $this->skill_manager->getTreeNodeManager($this->
getSkillTreeId());
613 $init_top_order_nr = $skill_tree->getMaxOrderNr($skill_tree_root_id);
614 $init_templ_top_order_nr = $skill_tree->getMaxOrderNr($skill_tree_root_id,
true);
619 if ($a_rec[
"TopNode"] == 1) {
622 $order = (
int) $a_rec[
"OrderNr"] + $init_top_order_nr;
624 $parent = (
int) $a_mapping->
getMapping(
"Services/Skill",
"skl_tree", $a_rec[
"Parent"]);
625 $status = (
int) $a_rec[
"Status"];
626 $order = (
int) $a_rec[
"OrderNr"];
628 switch ($a_rec[
"Type"]) {
631 $scat->setTitle($a_rec[
"Title"]);
632 $scat->setDescription($a_rec[
"Description"] ??
"");
633 $scat->setImportId(
"il_" . $source_inst_id .
"_scat_" . $a_rec[
"Child"]);
634 $scat->setSelfEvaluation((
bool) $a_rec[
"SelfEval"]);
635 $scat->setOrderNr($order);
636 $scat->setStatus($status);
638 $tree_node_manager->putIntoTree($scat, $parent);
639 $a_mapping->
addMapping(
"Services/Skill",
"skl_tree", $a_rec[
"Child"], $scat->getId());
644 $skll->setTitle($a_rec[
"Title"]);
645 $skll->setDescription($a_rec[
"Description"] ??
"");
646 $skll->setImportId(
"il_" . $source_inst_id .
"_skll_" . $a_rec[
"Child"]);
647 $skll->setSelfEvaluation((
bool) $a_rec[
"SelfEval"]);
648 $skll->setOrderNr($order);
649 $skll->setStatus($status);
651 $tree_node_manager->putIntoTree($skll, $parent);
652 $a_mapping->
addMapping(
"Services/Skill",
"skl_tree", $a_rec[
"Child"], $skll->getId());
656 $template_id = (
int) $a_mapping->
getMapping(
"Services/Skill",
"skl_tree", $a_rec[
"TemplateId"]);
658 if ($template_id > 0) {
660 $sktr->setTitle($a_rec[
"Title"]);
661 $sktr->setDescription($a_rec[
"Description"] ??
"");
662 $sktr->setImportId(
"il_" . $source_inst_id .
"_sktr_" . $a_rec[
"Child"]);
663 $sktr->setSelfEvaluation((
bool) $a_rec[
"SelfEval"]);
664 $sktr->setOrderNr($order);
665 $sktr->setSkillTemplateId($template_id);
666 $sktr->setStatus($status);
668 $tree_node_manager->putIntoTree($sktr, $parent);
669 $a_mapping->
addMapping(
"Services/Skill",
"skl_tree", $a_rec[
"Child"], $sktr->getId());
676 case "skl_templ_subtree":
677 if ($a_rec[
"TopNode"] == 1) {
679 $order = (
int) $a_rec[
"OrderNr"] + $init_templ_top_order_nr;
681 $parent = (
int) $a_mapping->
getMapping(
"Services/Skill",
"skl_tree", $a_rec[
"Parent"]);
682 $order = (
int) $a_rec[
"OrderNr"];
684 switch ($a_rec[
"Type"]) {
687 $sctp->setTitle($a_rec[
"Title"]);
688 $sctp->setDescription($a_rec[
"Description"] ??
"");
689 $sctp->setImportId(
"il_" . $source_inst_id .
"_sctp_" . $a_rec[
"Child"]);
690 $sctp->setOrderNr($order);
692 $tree_node_manager->putIntoTree($sctp, $parent);
693 $a_mapping->
addMapping(
"Services/Skill",
"skl_tree", $a_rec[
"Child"], $sctp->getId());
698 $sktp->setTitle($a_rec[
"Title"]);
699 $sktp->setDescription($a_rec[
"Description"] ??
"");
700 $sktp->setImportId(
"il_" . $source_inst_id .
"_sktp_" . $a_rec[
"Child"]);
701 $sktp->setOrderNr($order);
703 $tree_node_manager->putIntoTree($sktp, $parent);
704 $a_mapping->
addMapping(
"Services/Skill",
"skl_tree", $a_rec[
"Child"], $sktp->getId());
710 $skill_id = (
int) $a_mapping->
getMapping(
"Services/Skill",
"skl_tree", $a_rec[
"SkillId"]);
712 if (in_array(
$type, array(
"skll",
"sktp"))) {
713 if (
$type ==
"skll") {
718 $skill->addLevel($a_rec[
"Title"], $a_rec[
"Description"],
"il_" . $source_inst_id .
"_sklv_" . $a_rec[
"LevelId"]);
724 $profile = $this->skill_factory->profile(
727 $a_rec[
"Description"] ??
"",
730 $new_profile = $this->skill_manager->getProfileManager()->createProfile($profile);
732 $a_mapping->
addMapping(
"Services/Skill",
"skl_prof", $a_rec[
"Id"], $new_profile->getId());
735 case "skl_local_prof":
736 $profile = $this->skill_factory->profile(
739 $a_rec[
"Description"] ??
"",
744 $new_profile = $this->skill_manager->getProfileManager()->createProfile($profile);
746 $a_mapping->
addMapping(
"Services/Skill",
"skl_local_prof", $a_rec[
"Id"], $new_profile->getId());
749 case "skl_prof_level":
750 $profile_id = (
int) $a_mapping->
getMapping(
"Services/Skill",
"skl_prof", $a_rec[
"ProfileId"])
751 ? (
int) $a_mapping->
getMapping(
"Services/Skill",
"skl_prof", $a_rec[
"ProfileId"])
752 : (
int) $a_mapping->
getMapping(
"Services/Skill",
"skl_local_prof", $a_rec[
"ProfileId"]);
753 if ($profile_id > 0) {
754 $prof = $this->skill_manager->getProfileManager()->getById($profile_id);
757 $level_id = $tref_id = $base_skill = 0;
758 foreach ($level_id_data as $l) {
760 foreach ($skill_data as $s) {
764 $level_id = $l[
"level_id"];
765 $base_skill = $s[
"skill_id"];
766 $tref_id = $s[
"tref_id"];
771 $prof->addSkillLevel($base_skill, $tref_id, $level_id, $a_rec[
"OrderNr"]);
773 $this->skill_manager->getProfileManager()->updateProfile($prof);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
importRecord(string $a_entity, array $a_types, array $a_rec, ilImportMapping $a_mapping, string $a_schema_version)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
SkillInternalManagerService $skill_manager
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static lookupLevelSkillId(int $a_id)
static _getAllReferences(int $id)
get all reference ids for object ID
setSelectedNodes(array $a_val)
SkillTreeFactory $skill_tree_factory
readData(string $a_entity, string $a_version, array $a_ids)
static getCommonSkillIdForImportId(int $a_source_inst_id, int $a_skill_import_id, int $a_tref_import_id=0)
addMapping(string $a_comp, string $a_entity, string $a_old_id, string $a_new_id)
static _lookupType(int $a_obj_id)
getDependencies(string $a_entity, string $a_version, ?array $a_rec=null, ?array $a_ids=null)
int $init_templ_top_order_nr
getMapping(string $a_comp, string $a_entity, string $a_old_id)
Skill internal manager service.
getCurrentInstallationId()
Skill internal factory service.
getTypes(string $a_entity, string $a_version)
Get field types for entity.
getDirectDataFromQuery(string $a_query, bool $a_convert_to_leading_upper=true, bool $a_set=true)
Get data from query.This is a standard procedure, all db field names are directly mapped to abstract ...
ilSkillTreeRepository $tree_repo
setSkillTreeId(int $skill_tree_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setSelectedProfiles(array $a_val)
__construct(Container $dic, ilPlugin $plugin)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
getXmlNamespace(string $a_entity, string $a_schema_version)
SkillInternalFactoryService $skill_factory
static getLevelIdForImportId(int $a_source_inst_id, int $a_level_import_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...