29 public function __construct($a_parent_obj, $a_parent_cmd, $a_select_gui, $a_select_cmd, $a_select_par =
"obj_id")
33 $this->ctrl = $DIC->ctrl();
34 $this->lng = $DIC->language();
36 $this->select_gui = (is_object($a_select_gui))
37 ? strtolower(get_class($a_select_gui))
39 $this->select_cmd = $a_select_cmd;
40 $this->select_par = $a_select_par;
43 $this->lng->loadLanguageModule(
"skmg");
46 $this->root_id = $this->tree->readRootId();
51 $this->all_nodes = $this->tree->getSubTree($this->tree->getNodeData($this->root_id));
52 foreach ($this->all_nodes as
$n) {
53 $this->node[$n[
"child"]] =
$n;
54 $this->child_nodes[$n[
"parent"]][] =
$n;
55 $this->parent[$n[
"child"]] = $n[
"parent"];
71 $this->has_selectable_nodes = $a_val;
97 $this->selectable[$a_node_id] =
true;
100 while (isset($this->parent[$cid])) {
101 $this->selectable[$this->parent[$cid]] =
true;
102 $cid = $this->parent[$cid];
109 if ($this->selectable[$a_node_id]) {
111 $this->selectable_child_nodes[$this->node[$a_node_id][
"parent"]][] =
112 $this->node[$a_node_id];
124 if (is_array($this->selectable_child_nodes[$a_parent_id])) {
125 $childs = $this->selectable_child_nodes[$a_parent_id];
140 if (is_array($this->child_nodes[$a_parent_id])) {
141 return $this->child_nodes[$a_parent_id];
156 $skill_id = $a_node[
"child"];
158 $ilCtrl->setParameterByClass($this->select_gui, $this->select_par, $skill_id);
159 $ret = $ilCtrl->getLinkTargetByClass($this->select_gui, $this->select_cmd);
160 $ilCtrl->setParameterByClass($this->select_gui, $this->select_par,
"");
176 $title = $a_node[
"title"];
200 $t = $a_node[
"type"];
201 if (in_array($t, array(
"sktr"))) {
217 if (
$lng->exists(
"skmg_" . $a_node[
"type"])) {
218 return $lng->txt(
"skmg_" . $a_node[
"type"]);
221 return $lng->txt($a_node[
"type"]);
static sortArray( $array, $a_array_sortby, $a_array_sortorder=0, $a_numeric=false, $a_keep_keys=false)
sortArray
getHasSelectableNodes()
Get selectable nodes exist?
static _lookupSelfEvaluation($a_obj_id)
Lookup self evaluation.
setSkipRootNode($a_val)
Set skip root node.
Explorer for selecting a personal skill.
getNodeHref($a_node)
Get href for node.
__construct($a_parent_obj, $a_parent_cmd, $a_select_gui, $a_select_cmd, $a_select_par="obj_id")
Constructor.
setHasSelectableNodes($a_val)
Set selectable nodes exist?
getChildsOfNode($a_parent_id)
Get childs of node (selectable tree)
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
getNodeIcon($a_node)
get image path (may be overwritten by derived classes)
getNodeContent($a_node)
Get node content.
isNodeClickable($a_node)
Is clickable.
getNodeIconAlt($a_node)
Get node icon alt attribute.
Explorer class that works on tree objects (Services/Tree)
__construct(Container $dic, ilPlugin $plugin)
static _lookupStatus($a_obj_id)
Lookup Status.
getOriginalChildsOfNode($a_parent_id)
Get original childs of node (whole tree)
buildSelectableTree($a_node_id)
Build selectable tree.