5 include_once(
"./Services/Table/classes/class.ilTable2GUI.php");
21 function __construct($a_parent_obj, $a_parent_cmd, $a_top_skill_id, $a_tref_id,
26 $this->top_skill_id = $a_top_skill_id;
27 $this->tref_id = (int) $a_tref_id;
28 $this->basic_skill_id = $a_basic_skill_id;
31 include_once
"Services/PersonalWorkspace/classes/class.ilWorkspaceTree.php";
36 include_once(
"./Services/Skill/classes/class.ilSkillTree.php");
38 $path = $stree->getPathFull($this->basic_skill_id);
42 if ($p[
"type"] !=
"skrt")
54 $this->
addColumn($this->lng->txt(
"skmg_skill_level"));
55 $this->
addColumn($this->lng->txt(
"description"),
"",
"60%");
56 $this->
addColumn($this->lng->txt(
"skmg_materials"));
57 $this->
addColumn($this->lng->txt(
"actions"));
61 $this->
setRowTemplate(
"tpl.skill_materials_row.html",
"Services/Skill");
77 include_once(
"./Services/Skill/classes/class.ilSkillTreeNodeFactory.php");
79 foreach ($this->skill->getLevelData() as $k => $v)
94 include_once(
"./Services/Skill/classes/class.ilPersonalSkill.php");
96 $ilCtrl->setParameter($this->parent_obj,
"level_id", $a_set[
"id"]);
99 $this->tpl->setCurrentBlock(
"mat");
100 $obj_id = $this->ws_tree->lookupObjectId($m[
"wsp_id"]);
101 $this->tpl->setVariable(
"MAT_TITLE",
103 $this->tpl->setVariable(
"MAT_IMG",
105 $this->tpl->setVariable(
"TXT_REMOVE", $lng->txt(
"remove"));
106 $ilCtrl->setParameter($this->parent_obj,
"wsp_id", $m[
"wsp_id"]);
107 $this->tpl->setVariable(
"HREF_REMOVE", $ilCtrl->getLinkTarget($this->parent_obj,
"removeMaterial"));
108 $this->tpl->parseCurrentBlock();
111 $this->tpl->setCurrentBlock(
"cmd");
112 $this->tpl->setVariable(
"HREF_CMD", $ilCtrl->getLinkTarget($this->parent_obj,
114 $this->tpl->setVariable(
"TXT_CMD", $lng->txt(
"skmg_assign_materials"));
115 $this->tpl->parseCurrentBlock();
116 $ilCtrl->setParameter($this->parent_obj,
"level_id",
"");
118 $this->tpl->setVariable(
"LEVEL_ID", $a_set[
"id"]);
119 $this->tpl->setVariable(
"SKILL_ID", $this->basic_skill_id);
120 $this->tpl->setVariable(
"TXT_SKILL", $a_set[
"title"]);
121 $this->tpl->setVariable(
"TXT_SKILL_DESC", $a_set[
"description"]);