19 declare(strict_types=1);
75 string $a_select_par =
"node_id" 79 $this->
ctrl = $DIC->ctrl();
80 $this->
lng = $DIC->language();
82 $this->select_gui = (is_object($a_select_gui))
83 ? strtolower(get_class($a_select_gui))
85 $this->select_cmd = $a_select_cmd;
86 $this->select_par = $a_select_par;
88 $this->skill_tree_factory = $DIC->skills()->internal()->factory()->tree();
89 $this->tree_repo = $DIC->skills()->internal()->repo()->getTreeRepo();
90 $this->skill_tree_manager = $DIC->skills()->internal()->manager()->getTreeManager();
92 $this->
lng->loadLanguageModule(
"skmg");
94 $this->tree = $this->skill_tree_factory->getGlobalTree();
95 $this->root_id = $this->tree->readRootId();
100 $this->all_nodes = [];
102 foreach ($this->tree->getChilds(0) as
$c) {
103 $node_id = (
int)
$c[
"child"];
104 $tree_id = $this->tree_repo->getTreeIdForNodeId($node_id);
105 $tree = $this->skill_tree_factory->getTreeById($tree_id);
107 foreach ($all_nodes as $n) {
108 $this->node[$n[
"child"]] = $n;
109 $this->child_nodes[$n[
"parent"]][] = $n;
110 $this->parent[$n[
"child"]] = $n[
"parent"];
111 $this->all_nodes[] = $n;
127 $this->has_selectable_nodes = $a_val;
143 $this->selectable[$a_node_id] =
false;
145 $this->selectable[$a_node_id] =
true;
148 while (isset($this->parent[$cid])) {
149 $this->selectable[$this->parent[$cid]] =
true;
150 $cid = $this->parent[$cid];
156 if ($this->selectable[$a_node_id]) {
158 if (isset($this->node[$a_node_id])) {
159 $this->selectable_child_nodes[$this->node[$a_node_id][
"parent"]][] =
160 $this->node[$a_node_id];
172 if (isset($this->selectable_child_nodes[$a_parent_node_id])
173 && is_array($this->selectable_child_nodes[$a_parent_node_id])) {
174 $childs = $this->selectable_child_nodes[$a_parent_node_id];
186 if (isset($this->child_nodes[$a_parent_id]) && is_array($this->child_nodes[$a_parent_id])) {
187 return $this->child_nodes[$a_parent_id];
200 $skill_id = $a_node[
"child"];
203 $ret = $ilCtrl->getLinkTargetByClass($this->select_gui, $this->select_cmd);
204 $ilCtrl->setParameterByClass($this->select_gui, $this->select_par,
"");
218 if ((
int) $a_node[
"parent"] == 0) {
219 $tree_obj = $this->skill_tree_manager->getTree((
int) $a_node[
"skl_tree_id"]);
220 $title = $tree_obj->getTitle();
222 $title = $a_node[
"title"];
247 $t = $a_node[
"type"];
262 if (
$lng->
exists(
"skmg_" . $a_node[
"type"])) {
263 return $lng->
txt(
"skmg_" . $a_node[
"type"]);
266 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)
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)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
getOriginalChildsOfNode(int $a_parent_id)
Get original childs of node (whole tree)
SkillTreeFactory $skill_tree_factory
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)