4 include_once(
"./Services/Skill/classes/class.ilVirtualSkillTreeExplorerGUI.php");
33 $this->lng = $DIC->language();
34 $this->ctrl = $DIC->ctrl();
55 $a_parent_id_parts = explode(
":", $a_node[
"id"]);
56 $a_parent_skl_tree_id = $a_parent_id_parts[0];
57 $a_parent_skl_template_tree_id = $a_parent_id_parts[1];
60 $title = $a_node[
"title"];
63 if ($a_node[
"type"] ==
"skrt") {
64 $title =
$lng->txt(
"skmg_skills");
66 if ($a_node[
"type"] ==
"sktr") {
67 include_once(
"./Services/Skill/classes/class.ilSkillTemplateReference.php");
74 if ($a_parent_skl_template_tree_id == 0 || $a_node[
"type"] ==
"sktr") {
75 $title =
"<u>" . $title .
"</u>";
80 if ($this->vtree->isOutdated($a_node[
"id"])) {
81 $title =
"<span class='light'>" . $title .
"</span>";
95 $a_parent_id_parts = explode(
":", $a_node[
"id"]);
96 $a_parent_skl_tree_id = $a_parent_id_parts[0];
97 $a_parent_skl_template_tree_id = $a_parent_id_parts[1];
101 if ($a_node[
"type"] ==
"skrt") {
104 if (in_array($a_node[
"type"], array(
"skll",
"scat",
"sctr",
"sktr",
"sctp",
"sktp"))) {
106 $a_parent_skl_tree_id,
109 ($this->vtree->isDraft($a_node[
"id"]) || $this->vtree->isOutdated($a_node[
"id"]))
127 $id_parts = explode(
":", $a_node[
"id"]);
128 if ($id_parts[1] == 0) {
130 $skill_id = $a_node[
"id"];
134 $tref_id = $id_parts[0];
135 $skill_id = $id_parts[1];
138 if (
$_GET[
"obj_id"] ==
"" && $a_node[
"type"] ==
"skrt") {
142 if ($skill_id ==
$_GET[
"obj_id"] &&
143 (
$_GET[
"tref_id"] == $tref_id)) {
159 $id_parts = explode(
":", $a_node[
"id"]);
160 if ($id_parts[1] == 0) {
162 $skill_id = $a_node[
"id"];
166 $tref_id = $id_parts[0];
167 $skill_id = $id_parts[1];
171 "skrt" =>
"ilskillrootgui",
172 "scat" =>
"ilskillcategorygui",
173 "sktr" =>
"ilskilltemplatereferencegui",
174 "skll" =>
"ilbasicskillgui",
175 "sktp" =>
"ilbasicskilltemplategui",
176 "sctp" =>
"ilskilltemplatecategorygui" 180 "skrt" =>
"listSkills",
181 "scat" =>
"listItems",
182 "sktr" =>
"listItems",
185 "sctp" =>
"listItems" 188 $gui_class = $gui_class[$a_node[
"type"]];
189 $cmd = $cmd[$a_node[
"type"]];
191 $ilCtrl->setParameterByClass($gui_class,
"tref_id", $tref_id);
192 $ilCtrl->setParameterByClass($gui_class,
"obj_id", $skill_id);
193 $ret =
$ilCtrl->getLinkTargetByClass([
"ilAdministrationGUI",
"ilObjSkillManagementGUI", $gui_class], $cmd);
194 $ilCtrl->setParameterByClass($gui_class,
"obj_id",
$_GET[
"obj_id"]);
195 $ilCtrl->setParameterByClass($gui_class,
"tref_id",
$_GET[
"tref_id"]);
setShowDraftNodes($a_val)
Set show draft nodes.
static _lookupSelfEvaluation($a_obj_id)
Lookup self evaluation.
static getIconPath($a_obj_id, $a_type, $a_size="", $a_status=0)
Get icon path.
setSkipRootNode($a_val)
Set skip root node.
isNodeClickable($a_node)
Is clickable.
setShowOutdatedNodes($a_val)
Set show outdated nodes.
getNodeHref($a_node)
Get href for node.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static _lookupTemplateId($a_obj_id)
Lookup template ID.
isNodeHighlighted($a_node)
Is node highlighted?
static _lookupTitle($a_obj_id, $a_tref_id=0)
Lookup Title.
__construct($a_parent_obj, $a_parent_cmd)
Constructor.
__construct(Container $dic, ilPlugin $plugin)
getNodeIcon($a_node)
Get node content.
Explorer class that works on tree objects (Services/Tree)
getNodeContent($a_node)
Get node content.
Virtual skill tree explorer.