74 string $a_select_par =
"node_id" 78 $this->
ctrl = $DIC->ctrl();
79 $this->
lng = $DIC->language();
81 $this->select_gui = (is_object($a_select_gui))
82 ? strtolower(get_class($a_select_gui))
84 $this->select_cmd = $a_select_cmd;
85 $this->select_par = $a_select_par;
87 $this->skill_tree_factory = $DIC->skills()->internal()->factory()->tree();
88 $this->tree_repo = $DIC->skills()->internal()->repo()->getTreeRepo();
89 $this->skill_tree_manager = $DIC->skills()->internal()->manager()->getTreeManager();
91 $this->
lng->loadLanguageModule(
"skmg");
93 $this->tree = $this->skill_tree_factory->getGlobalTree();
94 $this->root_id = $this->tree->readRootId();
99 $this->all_nodes = [];
101 foreach ($this->tree->getChilds(0) as
$c) {
102 $tree_id = $this->tree_repo->getTreeIdForNodeId(
$c[
"child"]);
103 $tree = $this->skill_tree_factory->getTreeById($tree_id);
105 foreach ($all_nodes as $n) {
106 $this->node[$n[
"child"]] = $n;
107 $this->child_nodes[$n[
"parent"]][] = $n;
108 $this->parent[$n[
"child"]] = $n[
"parent"];
109 $this->all_nodes[] = $n;
125 $this->has_selectable_nodes = $a_val;
141 $this->selectable[$a_node_id] =
false;
143 $this->selectable[$a_node_id] =
true;
146 while (isset($this->parent[$cid])) {
147 $this->selectable[$this->parent[$cid]] =
true;
148 $cid = $this->parent[$cid];
154 if ($this->selectable[$a_node_id]) {
156 if (isset($this->node[$a_node_id])) {
157 $this->selectable_child_nodes[$this->node[$a_node_id][
"parent"]][] =
158 $this->node[$a_node_id];
170 if (isset($this->selectable_child_nodes[$a_parent_node_id])
171 && is_array($this->selectable_child_nodes[$a_parent_node_id])) {
172 $childs = $this->selectable_child_nodes[$a_parent_node_id];
184 if (isset($this->child_nodes[$a_parent_id]) && is_array($this->child_nodes[$a_parent_id])) {
185 return $this->child_nodes[$a_parent_id];
198 $skill_id = $a_node[
"child"];
201 $ret = $ilCtrl->getLinkTargetByClass($this->select_gui, $this->select_cmd);
202 $ilCtrl->setParameterByClass($this->select_gui, $this->select_par,
"");
216 if ((
int) $a_node[
"parent"] == 0) {
217 $tree_obj = $this->skill_tree_manager->getTree($a_node[
"skl_tree_id"]);
218 $title = $tree_obj->getTitle();
220 $title = $a_node[
"title"];
245 $t = $a_node[
"type"];
260 if (
$lng->
exists(
"skmg_" . $a_node[
"type"])) {
261 return $lng->
txt(
"skmg_" . $a_node[
"type"]);
264 return $lng->
txt($a_node[
"type"]);
exists(string $a_topic)
Check if language entry exists.
setSkipRootNode(bool $a_val)
static _lookupStatus(int $a_obj_id)
getNodeData(int $a_node_id, ?int $a_tree_pk=null)
get all information of a node.
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...
setHasSelectableNodes(bool $a_val)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
SkillTreeManager $skill_tree_manager
Explorer for selecting a personal skill.
buildSelectableTree(int $a_node_id)
setParameterByClass(string $a_class, string $a_parameter, $a_value)
static _lookupType(int $a_obj_id)
array $selectable_child_nodes
bool $has_selectable_nodes
getChildsOfNode($a_parent_node_id)
Get childs of node (selectable tree)
getNodeIcon($a_node)
get image path (may be overwritten by derived classes)
getOriginalChildsOfNode(int $a_parent_id)
Get original childs of node (whole tree)
SkillTreeFactory $skill_tree_factory
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Explorer class that works on tree objects (Services/Tree)
__construct(Container $dic, ilPlugin $plugin)
ilSkillTreeRepository $tree_repo
static _lookupSelfEvaluation(int $a_obj_id)
__construct( $a_parent_obj, string $a_parent_cmd, $a_select_gui, string $a_select_cmd, string $a_select_par="node_id")
getSubTree(array $a_node, bool $a_with_data=true, array $a_type=[])
get all nodes in the subtree under specified node
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)