38 $this->db = $DIC->database();
41 $this->skill_tree_root_id = $this->skill_tree->readRootId();
43 $this->init_top_order_nr = $this->skill_tree->getMaxOrderNr($this->skill_tree_root_id);
44 $this->init_templ_top_order_nr = $this->skill_tree->getMaxOrderNr($this->skill_tree_root_id,
true);
74 $this->selected_nodes = $a_val;
94 $this->selected_profiles = $a_val;
114 return array(
"5.1.0",
"7.0");
125 return "http://www.ilias.de/xml/Services/Skill/" . $a_entity;
136 if ($a_entity ==
"skmg") {
137 switch ($a_version) {
145 if ($a_entity ==
"skl_subtree") {
146 switch ($a_version) {
150 "SklTreeId" =>
"integer",
151 "TopNode" =>
"integer",
152 "Child" =>
"integer",
153 "Parent" =>
"integer",
154 "Depth" =>
"integer",
157 "Description" =>
"text",
158 "SelfEval" =>
"integer",
159 "OrderNr" =>
"integer",
160 "Status" =>
"integer",
161 "TemplateId" =>
"integer" 165 if ($a_entity ==
"skl_templ_subtree") {
166 switch ($a_version) {
170 "SklTreeId" =>
"integer",
171 "TopNode" =>
"integer",
172 "Child" =>
"integer",
173 "Parent" =>
"integer",
174 "Depth" =>
"integer",
177 "Description" =>
"text",
178 "SelfEval" =>
"integer",
179 "OrderNr" =>
"integer",
180 "Status" =>
"integer" 184 if ($a_entity ==
"skl_level") {
185 switch ($a_version) {
189 "LevelId" =>
"integer",
190 "SkillId" =>
"integer",
193 "Description" =>
"text" 197 if ($a_entity ==
"skl_prof") {
198 switch ($a_version) {
204 "Description" =>
"text" 208 if ($a_entity ==
"skl_local_prof") {
209 switch ($a_version) {
214 "Description" =>
"text",
219 if ($a_entity ==
"skl_prof_level") {
220 switch ($a_version) {
223 "ProfileId" =>
"integer",
224 "BaseSkillId" =>
"integer",
225 "TrefId" =>
"integer",
226 "LevelId" =>
"integer" 230 "ProfileId" =>
"integer",
231 "BaseSkillId" =>
"integer",
232 "TrefId" =>
"integer",
233 "LevelId" =>
"integer",
234 "OrderNr" =>
"integer" 247 public function readData($a_entity, $a_version, $a_ids, $a_field =
"")
251 $this->data = array();
253 if (!is_array($a_ids)) {
254 $a_ids = array($a_ids);
256 if ($a_entity ==
"skmg") {
257 switch ($a_version) {
260 if ($this->
getMode() == self::MODE_SKILLS) {
261 $this->data[] = array(
"Mode" =>
"Skills");
262 } elseif ($this->
getMode() == self::MODE_PROFILES) {
263 $this->data[] = array(
"Mode" =>
"Profiles");
269 if ($a_entity ==
"skl_subtree") {
270 switch ($a_version) {
273 foreach ($a_ids as $id) {
274 $sub = $this->skill_tree->getSubTree($this->skill_tree->getNodeData($id));
275 foreach ($sub as $s) {
277 "SELECT * FROM skl_templ_ref " .
278 " WHERE skl_node_id = " .
$ilDB->quote($s[
"child"],
"integer")
280 $rec =
$ilDB->fetchAssoc($set);
282 $top_node = ($s[
"child"] == $id)
285 $this->data[] = array(
286 "SklTreeId" => $s[
"skl_tree_id"],
287 "TopNode" => $top_node,
288 "Child" => $s[
"child"],
289 "Parent" => $s[
"parent"],
290 "Depth" => $s[
"depth"],
291 "Type" => $s[
"type"],
292 "Title" => $s[
"title"],
293 "Description" => $s[
"description"],
294 "SelfEval" => $s[
"self_eval"],
295 "OrderNr" => $s[
"order_nr"],
296 "Status" => $s[
"status"],
297 "TemplateId" => (
int) $rec[
"templ_id"]
306 if ($a_entity ==
"skl_templ_subtree") {
307 switch ($a_version) {
310 foreach ($a_ids as $id) {
311 $sub = $this->skill_tree->getSubTree($this->skill_tree->getNodeData($id));
312 foreach ($sub as $s) {
313 $top_node = ($s[
"child"] == $id)
316 $this->data[] = array(
317 "SklTreeId" => $s[
"skl_tree_id"],
318 "TopNode" => $top_node,
319 "Child" => $s[
"child"],
320 "Parent" => $s[
"parent"],
321 "Depth" => $s[
"depth"],
322 "Type" => $s[
"type"],
323 "Title" => $s[
"title"],
324 "Description" => $s[
"description"],
325 "SelfEval" => $s[
"self_eval"],
326 "OrderNr" => $s[
"order_nr"],
327 "Status" => $s[
"status"]
336 if ($a_entity ==
"skl_level") {
337 switch ($a_version) {
341 " FROM skl_level WHERE " .
342 $ilDB->in(
"skill_id", $a_ids,
false,
"integer") .
" ORDER BY skill_id ASC, nr ASC");
348 if ($a_entity ==
"skl_prof") {
349 switch ($a_version) {
353 " FROM skl_profile WHERE " .
354 $ilDB->in(
"id", $a_ids,
false,
"integer"));
360 if ($a_entity ==
"skl_local_prof") {
361 switch ($a_version) {
363 foreach ($a_ids as $obj_id) {
365 $obj_ref_id = end($obj_ref_id);
367 foreach ($profiles as $p) {
368 $profile_ids[] = $p[
"id"];
371 "SELECT * FROM skl_profile " .
372 " WHERE ".
$ilDB->in(
"id", $profile_ids,
false,
"integer")
374 while ($rec =
$ilDB->fetchAssoc($set)) {
377 "Title" => $rec[
"title"],
378 "Description" => $rec[
"description"],
379 "RefId" => $obj_ref_id
388 if ($a_entity ==
"skl_prof_level") {
389 switch ($a_version) {
392 " FROM skl_profile_level WHERE " .
393 $ilDB->in(
"profile_id", $a_ids,
false,
"integer"));
397 " FROM skl_profile_level WHERE " .
398 $ilDB->in(
"profile_id", $a_ids,
false,
"integer"));
414 if ($this->
getMode() == self::MODE_SKILLS) {
417 $exp_types = array(
"skll",
"scat",
"sctr",
"sktr");
418 if (!is_array($sel_nodes)) {
419 $childs = $this->skill_tree->getChildsByTypeFilter($this->skill_tree->readRootId(), $exp_types);
421 $skl_subtree_deps = array();
422 foreach ($childs as
$c) {
423 $skl_subtree_deps[] = $c[
"child"];
426 foreach ($sel_nodes as
$n) {
428 $skl_subtree_deps[] =
$n;
434 $ref_nodes = array();
435 if (is_array($skl_subtree_deps)) {
436 foreach ($skl_subtree_deps as $id) {
438 $ref_nodes[$id] = $id;
440 $sub = $this->skill_tree->getSubTree($this->skill_tree->getNodeData($id),
true,
"sktr");
441 foreach ($sub as $s) {
442 $ref_nodes[$s[
"child"]] = $s[
"child"];
448 $set =
$ilDB->query(
"SELECT DISTINCT(templ_id) FROM skl_templ_ref " .
449 " WHERE " .
$ilDB->in(
"skl_node_id", $ref_nodes,
false,
"integer"));
450 while ($rec =
$ilDB->fetchAssoc($set)) {
451 $deps[
"skl_templ_subtree"][
"ids"][] = $rec[
"templ_id"];
455 $deps[
"skl_subtree"][
"ids"] = $skl_subtree_deps;
456 } elseif ($this->
getMode() == self::MODE_PROFILES) {
458 $deps[
"skl_prof"][
"ids"][] = $p_id;
465 case "skl_templ_subtree":
467 if (in_array($a_rec[
"Type"], array(
"skll",
"sktp"))) {
468 $deps[
"skl_level"][
"ids"][] = $a_rec[
"Child"];
473 case "skl_local_prof":
474 $deps[
"skl_prof_level"][
"ids"][] = $a_rec[
"Id"];
488 public function importRecord($a_entity, $a_types, $a_rec, $a_mapping, $a_schema_version)
490 $source_inst_id = $a_mapping->getInstallId();
493 if ($a_rec[
"TopNode"] == 1) {
494 $parent = $this->skill_tree_root_id;
496 $order = $a_rec[
"OrderNr"] + $this->init_top_order_nr;
498 $parent = (int) $a_mapping->getMapping(
"Services/Skill",
"skl_tree", $a_rec[
"Parent"]);
499 $status = $a_rec[
"Status"];
500 $order = $a_rec[
"OrderNr"];
502 switch ($a_rec[
"Type"]) {
505 $scat->setTitle($a_rec[
"Title"]);
506 $scat->setDescription($a_rec[
"Description"]);
507 $scat->setImportId(
"il_" . $source_inst_id .
"_scat_" . $a_rec[
"Child"]);
508 $scat->setSelfEvaluation($a_rec[
"SelfEval"]);
509 $scat->setOrderNr($order);
510 $scat->setStatus($status);
513 $a_mapping->addMapping(
"Services/Skill",
"skl_tree", $a_rec[
"Child"], $scat->getId());
518 $skll->setTitle($a_rec[
"Title"]);
519 $skll->setDescription($a_rec[
"Description"]);
520 $skll->setImportId(
"il_" . $source_inst_id .
"_skll_" . $a_rec[
"Child"]);
521 $skll->setSelfEvaluation($a_rec[
"SelfEval"]);
522 $skll->setOrderNr($order);
523 $skll->setStatus($status);
526 $a_mapping->addMapping(
"Services/Skill",
"skl_tree", $a_rec[
"Child"], $skll->getId());
530 $template_id = (int) $a_mapping->getMapping(
"Services/Skill",
"skl_tree", $a_rec[
"TemplateId"]);
532 if ($template_id > 0) {
534 $sktr->setTitle($a_rec[
"Title"]);
535 $sktr->setDescription($a_rec[
"Description"]);
536 $sktr->setImportId(
"il_" . $source_inst_id .
"_sktr_" . $a_rec[
"Child"]);
537 $sktr->setSelfEvaluation($a_rec[
"SelfEval"]);
538 $sktr->setOrderNr($order);
539 $sktr->setSkillTemplateId($template_id);
540 $sktr->setStatus($status);
543 $a_mapping->addMapping(
"Services/Skill",
"skl_tree", $a_rec[
"Child"], $sktr->getId());
550 case "skl_templ_subtree":
551 if ($a_rec[
"TopNode"] == 1) {
552 $parent = $this->skill_tree_root_id;
553 $order = $a_rec[
"OrderNr"] + $this->init_templ_top_order_nr;
555 $parent = (int) $a_mapping->getMapping(
"Services/Skill",
"skl_tree", $a_rec[
"Parent"]);
556 $order = $a_rec[
"OrderNr"];
558 switch ($a_rec[
"Type"]) {
561 $sctp->setTitle($a_rec[
"Title"]);
562 $sctp->setDescription($a_rec[
"Description"]);
563 $sctp->setImportId(
"il_" . $source_inst_id .
"_sctp_" . $a_rec[
"Child"]);
564 $sctp->setOrderNr($order);
567 $a_mapping->addMapping(
"Services/Skill",
"skl_tree", $a_rec[
"Child"], $sctp->getId());
572 $sktp->setTitle($a_rec[
"Title"]);
573 $sktp->setDescription($a_rec[
"Description"]);
574 $sktp->setImportId(
"il_" . $source_inst_id .
"_sktp_" . $a_rec[
"Child"]);
575 $sktp->setOrderNr($order);
578 $a_mapping->addMapping(
"Services/Skill",
"skl_tree", $a_rec[
"Child"], $sktp->getId());
584 $skill_id = (int) $a_mapping->getMapping(
"Services/Skill",
"skl_tree", $a_rec[
"SkillId"]);
586 if (in_array(
$type, array(
"skll",
"sktp"))) {
587 if (
$type ==
"skll") {
592 $skill->addLevel($a_rec[
"Title"], $a_rec[
"Description"],
"il_" . $source_inst_id .
"_sklv_" . $a_rec[
"LevelId"]);
599 $prof->setTitle($a_rec[
"Title"]);
600 $prof->setDescription($a_rec[
"Description"]);
602 $a_mapping->addMapping(
"Services/Skill",
"skl_prof", $a_rec[
"Id"], $prof->getId());
605 case "skl_local_prof":
607 $prof->setTitle($a_rec[
"Title"]);
608 $prof->setDescription($a_rec[
"Description"]);
609 $prof->setRefId($a_rec[
"RefId"]);
611 $a_mapping->addMapping(
"Services/Skill",
"skl_local_prof", $a_rec[
"Id"], $prof->getId());
614 case "skl_prof_level":
615 $profile_id = (int) $a_mapping->getMapping(
"Services/Skill",
"skl_prof", $a_rec[
"ProfileId"])
616 ? (int) $a_mapping->getMapping(
"Services/Skill",
"skl_prof", $a_rec[
"ProfileId"])
617 : (int) $a_mapping->getMapping(
"Services/Skill",
"skl_local_prof", $a_rec[
"ProfileId"]);
618 if ($profile_id > 0) {
624 $level_id = $tref_id = $base_skill = 0;
625 foreach ($level_id_data as $l) {
627 foreach ($skill_data as $s) {
631 $level_id = $l[
"level_id"];
632 $base_skill = $s[
"skill_id"];
633 $tref_id = $s[
"tref_id"];
638 $prof->addSkillLevel($base_skill, $tref_id, $level_id, $a_rec[
"OrderNr"]);
getSelectedNodes()
Get export selected nodes.
setSelectedNodes($a_val)
Set export selected nodes.
getDirectDataFromQuery($a_query, $a_convert_to_leading_upper=true, $a_set=true)
Get data from query.This is a standard procedure, all db field names are directly mapped to abstract ...
Skill Template Reference.
__construct()
Constructor.
static lookupLevelSkillId(int $a_id)
getXmlNamespace($a_entity, $a_schema_version)
Get xml namespace.
static putInTree($a_obj, $a_parent_id="", $a_target_node_id="")
Put this object into the skill tree.
getSupportedVersions()
Get supported versions.
static getCommonSkillIdForImportId(int $a_source_inst_id, int $a_skill_import_id, int $a_tref_import_id=0)
static _getAllReferences($a_id)
get all reference ids of object
static _lookupType($a_obj_id)
Lookup Type.
static getLocalProfiles(int $a_ref_id)
Get local profiles of object.
getDependencies($a_entity, $a_version, $a_rec, $a_ids)
Determine the dependent sets of data.
readData($a_entity, $a_version, $a_ids, $a_field="")
Read data.
getCurrentInstallationId()
Get current installation id.
setSelectedProfiles($a_val)
Set selected profiles.
getSelectedProfiles()
Get selected profiles.
__construct(Container $dic, ilPlugin $plugin)
static getLevelIdForImportId(int $a_source_inst_id, int $a_level_import_id)
importRecord($a_entity, $a_types, $a_rec, $a_mapping, $a_schema_version)
Import record.
A dataset contains in data in a common structure that can be shared and transformed for different pur...
getTypes($a_entity, $a_version)
Get field types for entity.