19 declare(strict_types=1);
39 public function __construct(
string $a_id, $a_parent_obj,
string $a_parent_cmd,
int $tree_id = 0)
43 $this->
lng = $DIC->language();
44 $this->
ctrl = $DIC->ctrl();
47 $this->skill_tree_manager = $DIC->skills()->internal()->manager()->getTreeManager();
48 $this->tree_factory = $DIC->skills()->internal()->factory();
51 $this->vtree = $this->tree_factory->tree()->getGlobalVirtualTree();
53 $this->vtree = $this->tree_factory->tree()->getVirtualTreeById($tree_id);
62 $this->show_draft_nodes = $a_val;
63 $this->vtree->setIncludeDrafts($a_val);
73 $this->show_outdated_nodes = $a_val;
74 $this->vtree->setIncludeOutdated($a_val);
87 return $this->vtree->getRootNode();
96 return (
string) $a_node[
"id"];
104 return parent::getDomNodeIdForNodeId(str_replace(
":",
"_", $a_node_id));
112 $id = parent::getNodeIdForDomNodeId($a_dom_node_id);
113 return str_replace(
"_",
":",
$id);
122 return $this->vtree->getChildsOfNode($a_parent_node_id);
133 $a_parent_id_parts = explode(
":", (
string) $a_node[
"id"]);
134 $a_parent_skl_tree_id = (
int) $a_parent_id_parts[0];
135 $a_parent_skl_template_tree_id = isset($a_parent_id_parts[1]) ? (
int) $a_parent_id_parts[1] : 0;
138 if ((
int) $a_node[
"parent"] == 0) {
139 $tree_obj = $this->skill_tree_manager->getTree($a_node[
"skl_tree_id"]);
140 $title = $tree_obj->getTitle();
142 $title = $a_node[
"title"];
146 if ($a_node[
"type"] ==
"skrt") {
147 $lng->
txt(
"skmg_skills");
159 $a_id_parts = explode(
":", (
string) $a_node[
"id"]);
160 $a_skl_template_tree_id = isset($a_id_parts[1]) ? (
int) $a_id_parts[1] : 0;
163 if ($a_node[
"type"] ==
"skrt") {
166 $type = $a_node[
"type"];
167 if ($type ==
"sktr") {
170 if ($type ==
"sktp") {
173 if ($type ==
"sctp") {
192 $id_parts = explode(
":", (
string) $a_node[
"id"]);
193 if (!isset($id_parts[1]) || $id_parts[1] == 0) {
195 $skill_id = $a_node[
"id"];
198 $skill_id = $id_parts[1] .
":" . $id_parts[0];
221 if ($lng->
exists(
"skmg_" . $a_node[
"type"])) {
222 return $lng->
txt(
"skmg_" . $a_node[
"type"]);
225 return $lng->
txt($a_node[
"type"]);
exists(string $a_topic)
Check if language entry exists.
setSkipRootNode(bool $a_val)
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...
__construct(string $a_id, $a_parent_obj, string $a_parent_cmd, int $tree_id=0)
getChildsOfNode($a_parent_node_id)
SkillInternalFactoryService $tree_factory
static _lookupType(int $a_obj_id)
getNodeIdForDomNodeId(string $a_dom_node_id)
setShowDraftNodes(bool $a_val)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getDomNodeIdForNodeId($a_node_id)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
Skill internal factory service.
__construct(Container $dic, ilPlugin $plugin)
bool $show_outdated_nodes
SkillTreeManager $skill_tree_manager
ilVirtualSkillTree $vtree
Virtual skill tree explorer.
setShowOutdatedNodes(bool $a_val)