4 include_once(
"./Services/Table/classes/class.ilTable2GUI.php");
6 include_once(
"./Services/Skill/classes/class.ilSkillTreeNode.php");
27 include_once(
"./Services/Skill/classes/class.ilSkillSelfEvaluation.php");
29 $this->
setTitle($lng->txt(
"skmg_self_evaluations"));
32 $this->
addColumn($this->lng->txt(
"created"));
33 $this->
addColumn($this->lng->txt(
"last_update"));
34 $this->
addColumn($this->lng->txt(
"skmg_skill"));
35 $this->
addColumn($this->lng->txt(
"actions"));
39 $this->
setRowTemplate(
"tpl.self_eval_overview_row.html",
"Services/Skill");
42 $this->
addMultiCommand(
"confirmSelfEvaluationDeletion", $lng->txt(
"delete"));
53 $this->tpl->setVariable(
"SE_ID", $a_set[
"id"]);
54 $this->tpl->setVariable(
"VAL_CREATED", $a_set[
"created"]);
55 $this->tpl->setVariable(
"VAL_LAST_UPDATE", $a_set[
"last_update"]);
56 $this->tpl->setVariable(
"VAL_SKILL",
58 $this->tpl->setVariable(
"TXT_CMD", $lng->txt(
"edit"));
59 $ilCtrl->setParameter($this->parent_obj,
"se_id", $a_set[
"id"]);
60 $this->tpl->setVariable(
"HREF_CMD",
61 $ilCtrl->getLinkTarget($this->parent_obj,
"editSelfEvaluation"));