/** * Paste item (tree) from clipboard to skill tree */ static function pasteTree($a_item_id, $a_parent_id, $a_target, $a_insert_time, &$a_copied_nodes, $a_as_copy = false, $a_add_suffix = false) { global $ilUser, $ilias, $ilLog, $lng; $item_type = ilSkillTreeNode::_lookupType($a_item_id); if ($item_type == "scat") { include_once "./Services/Skill/classes/class.ilSkillCategory.php"; $item = new ilSkillCategory($a_item_id); } else { if ($item_type == "skll") { include_once "./Services/Skill/classes/class.ilBasicSkill.php"; $item = new ilBasicSkill($a_item_id); } else { if ($item_type == "sktr") { include_once "./Services/Skill/classes/class.ilSkillTemplateReference.php"; $item = new ilSkillTemplateReference($a_item_id); } else { if ($item_type == "sktp") { include_once "./Services/Skill/classes/class.ilBasicSkillTemplate.php"; $item = new ilBasicSkillTemplate($a_item_id); } else { if ($item_type == "sctp") { include_once "./Services/Skill/classes/class.ilSkillTemplateCategory.php"; $item = new ilSkillTemplateCategory($a_item_id); } } } } } $ilLog->write("Getting from clipboard type " . $item_type . ", " . "Item ID: " . $a_item_id); if ($a_as_copy) { $target_item = $item->copy(); if ($a_add_suffix) { $target_item->setTitle($target_item->getTitle() . " " . $lng->txt("copy_of_suffix")); $target_item->update(); } $a_copied_nodes[$item->getId()] = $target_item->getId(); } else { $target_item = $item; } $ilLog->write("Putting into skill tree type " . $target_item->getType() . "Item ID: " . $target_item->getId() . ", Parent: " . $a_parent_id . ", " . "Target: " . $a_target); ilSkillTreeNode::putInTree($target_item, $a_parent_id, $a_target); $childs = $ilUser->getClipboardChilds($item->getId(), $a_insert_time); foreach ($childs as $child) { ilSkillTreeNode::pasteTree($child["id"], $target_item->getId(), IL_LAST_NODE, $a_insert_time, $a_copied_nodes, $a_as_copy); } return $target_item->getId(); }