15 public function __construct($a_parent_obj, $a_parent_cmd, $a_survey)
19 $this->ctrl = $DIC->ctrl();
20 $this->lng = $DIC->language();
22 $lng = $DIC->language();
24 $this->survey = $a_survey;
33 $this->thresholds = $this->skill_thres->getThresholds();
35 $this->
addColumn($this->lng->txt(
"survey_skill"));
36 $this->
addColumn($this->lng->txt(
"survey_skill_nr_q"));
37 $this->
addColumn($this->lng->txt(
"survey_skill_max_scale_points"));
38 $this->
addColumn($this->lng->txt(
"survey_up_to_x_points"));
39 $this->
addColumn($this->lng->txt(
"actions"));
57 $opts = $sskill->getAllAssignedSkillsAsOptions();
59 foreach ($opts as $k => $o) {
60 $v = explode(
":", $k);
62 $question_ids = $sskill->getQuestionsForSkill($v[0], $v[1]);
63 $scale_sum = $sskill->determineMaxScale($v[0], $v[1]);
66 "base_skill" => $v[0],
68 "nr_of_q" => count($question_ids),
69 "scale_sum" => $scale_sum
85 $ilCtrl->setParameter($this->parent_obj,
"sk_id", $a_set[
"base_skill"]);
86 $ilCtrl->setParameter($this->parent_obj,
"tref_id", $a_set[
"tref_id"]);
88 $this->tpl->setVariable(
92 $path = $this->skill_tree->getSkillTreePath($a_set[
"base_skill"], $a_set[
"tref_id"]);
93 $path_nodes = array();
94 foreach ($path as $p) {
95 if ($p[
"child"] > 1 && $p[
"skill_id"] != $a_set[
"base_skill"]) {
99 $this->tpl->setVariable(
"PATH", implode(
" > ", $path_nodes));
103 $this->tpl->setVariable(
"NR_OF_QUESTIONS", $a_set[
"nr_of_q"]);
104 $this->tpl->setVariable(
"MAX_SCALE_POINTS", $a_set[
"scale_sum"]);
105 $this->tpl->setVariable(
"CMD",
$ilCtrl->getLinkTarget($this->parent_obj,
"listSkillThresholds"));
106 $this->tpl->setVariable(
"ACTION",
$lng->txt(
"edit"));
109 $ld = $bs->getLevelData();
110 foreach ($ld as $l) {
111 $this->tpl->setCurrentBlock(
"points");
112 $this->tpl->setVariable(
"LEV", $l[
"title"]);
114 $tr = $this->thresholds[$l[
"id"]][$a_set[
"tref_id"]];
115 if ((
int) $tr != 0) {
116 $this->tpl->setVariable(
"THRESHOLD", (
int) $tr);
118 $this->tpl->setVariable(
"THRESHOLD",
"");
120 $this->tpl->parseCurrentBlock();
TableGUI class for skill list in survey.
__construct($a_parent_obj, $a_parent_cmd, $a_survey)
Constructor.
fillRow($a_set)
Fill table row.
Skill/Competence handling in surveys.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
Skill tresholds for 360 surveys.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
static _lookupTitle($a_obj_id, $a_tref_id=0)
Lookup Title.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.