ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilVirtualSkillTreeExplorerGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
30 {
31  protected ilLanguage $lng;
35 
36  protected bool $show_draft_nodes = false;
37  protected bool $show_outdated_nodes = false;
38 
39  public function __construct(string $a_id, $a_parent_obj, string $a_parent_cmd, int $tree_id = 0)
40  {
41  global $DIC;
42 
43  $this->lng = $DIC->language();
44  $this->ctrl = $DIC->ctrl();
45  parent::__construct($a_id, $a_parent_obj, $a_parent_cmd);
46 
47  $this->skill_tree_manager = $DIC->skills()->internal()->manager()->getTreeManager();
48  $this->tree_factory = $DIC->skills()->internal()->factory();
49 
50  if ($tree_id == 0) {
51  $this->vtree = $this->tree_factory->tree()->getGlobalVirtualTree();
52  } else {
53  $this->vtree = $this->tree_factory->tree()->getVirtualTreeById($tree_id);
54  }
55 
56  $this->setSkipRootNode(false);
57  $this->setAjax(false);
58  }
59 
60  public function setShowDraftNodes(bool $a_val): void
61  {
62  $this->show_draft_nodes = $a_val;
63  $this->vtree->setIncludeDrafts($a_val);
64  }
65 
66  public function getShowDraftNodes(): bool
67  {
69  }
70 
71  public function setShowOutdatedNodes(bool $a_val): void
72  {
73  $this->show_outdated_nodes = $a_val;
74  $this->vtree->setIncludeOutdated($a_val);
75  }
76 
77  public function getShowOutdatedNodes(): bool
78  {
80  }
81 
85  public function getRootNode(): array
86  {
87  return $this->vtree->getRootNode();
88  }
89 
94  public function getNodeId($a_node): string
95  {
96  return (string) $a_node["id"];
97  }
98 
102  public function getDomNodeIdForNodeId($a_node_id): string
103  {
104  return parent::getDomNodeIdForNodeId(str_replace(":", "_", $a_node_id));
105  }
106 
110  public function getNodeIdForDomNodeId(string $a_dom_node_id): string
111  {
112  $id = parent::getNodeIdForDomNodeId($a_dom_node_id);
113  return str_replace("_", ":", $id);
114  }
115 
120  public function getChildsOfNode($a_parent_node_id): array
121  {
122  return $this->vtree->getChildsOfNode($a_parent_node_id);
123  }
124 
129  public function getNodeContent($a_node): string
130  {
131  $lng = $this->lng;
132 
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;
136 
137  // title
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();
141  } else {
142  $title = $a_node["title"];
143  }
144 
145  // root?
146  if ($a_node["type"] == "skrt") {
147  $lng->txt("skmg_skills");
148  }
149 
150  return $title;
151  }
152 
157  public function getNodeIcon($a_node): string
158  {
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;
161 
162  // root?
163  if ($a_node["type"] == "skrt") {
164  $icon = ilUtil::getImagePath("standard/icon_scat.svg");
165  } else {
166  $type = $a_node["type"];
167  if ($type == "sktr") {
168  $type = ilSkillTreeNode::_lookupType($a_skl_template_tree_id);
169  }
170  if ($type == "sktp") {
171  $type = "skll";
172  }
173  if ($type == "sctp") {
174  $type = "scat";
175  }
176  $icon = ilUtil::getImagePath("standard/icon_" . $type . ".svg");
177  }
178 
179  return $icon;
180  }
181 
186  public function getNodeHref($a_node): string
187  {
188  $ilCtrl = $this->ctrl;
189 
190  // we have a tree id like <skl_tree_id>:<skl_template_tree_id> here
191  // use this, if you want a "common" skill id in format <skill_id>:<tref_id>
192  $id_parts = explode(":", (string) $a_node["id"]);
193  if (!isset($id_parts[1]) || $id_parts[1] == 0) {
194  // skill in main tree
195  $skill_id = $a_node["id"];
196  } else {
197  // skill in template
198  $skill_id = $id_parts[1] . ":" . $id_parts[0];
199  }
200 
201  return "";
202  }
203 
208  public function isNodeClickable($a_node): bool
209  {
210  return false;
211  }
212 
217  public function getNodeIconAlt($a_node): string
218  {
219  $lng = $this->lng;
220 
221  if ($lng->exists("skmg_" . $a_node["type"])) {
222  return $lng->txt("skmg_" . $a_node["type"]);
223  }
224 
225  return $lng->txt($a_node["type"]);
226  }
227 }
exists(string $a_topic)
Check if language entry exists.
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)
static _lookupType(int $a_obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
__construct(Container $dic, ilPlugin $plugin)