41 $this->
ctrl = $DIC->ctrl();
42 $this->
lng = $DIC->language();
43 $ilCtrl = $DIC->ctrl();
44 $lng = $DIC->language();
46 $this->survey = $a_survey;
52 $this->skill_tree_service = $DIC->skills()->tree();
53 $this->skill_tree = $this->skill_tree_service->getGlobalSkillTree();
56 $this->thresholds = $this->skill_thres->getThresholds();
60 $this->
addColumn($this->
lng->txt(
"survey_skill_max_scale_points"));
61 $this->
addColumn($this->
lng->txt(
"survey_up_to_x_points"));
65 $this->
setRowTemplate(
"tpl.svy_skill_row.html",
"components/ILIAS/Survey");
71 $opts = $sskill->getAllAssignedSkillsAsOptions();
73 foreach ($opts as $k => $o) {
74 $v = explode(
":", $k);
76 $question_ids = $sskill->getQuestionsForSkill($v[0], $v[1]);
77 $scale_sum = $sskill->determineMaxScale($v[0], $v[1]);
80 "base_skill" => $v[0],
82 "nr_of_q" => count($question_ids),
83 "scale_sum" => $scale_sum
90 protected function fillRow(array $a_set): void
95 $ilCtrl->
setParameter($this->parent_obj,
"sk_id", $a_set[
"base_skill"]);
96 $ilCtrl->setParameter($this->parent_obj,
"tref_id", $a_set[
"tref_id"]);
98 $this->tpl->setVariable(
102 $path = $this->skill_tree->getSkillTreePath($a_set[
"base_skill"], $a_set[
"tref_id"]);
103 $path_nodes = array();
104 foreach (
$path as $p) {
105 if ($p[
"child"] > 1 && $p[
"skill_id"] != $a_set[
"base_skill"]) {
109 $this->tpl->setVariable(
"PATH", implode(
" > ", $path_nodes));
113 $this->tpl->setVariable(
"NR_OF_QUESTIONS", $a_set[
"nr_of_q"]);
114 $this->tpl->setVariable(
"MAX_SCALE_POINTS", $a_set[
"scale_sum"]);
115 $this->tpl->setVariable(
"CMD", $ilCtrl->getLinkTarget($this->parent_obj,
"listSkillThresholds"));
116 $this->tpl->setVariable(
"ACTION",
$lng->
txt(
"edit"));
119 $ld = $bs->getLevelData();
120 foreach ($ld as $l) {
121 $this->tpl->setCurrentBlock(
"points");
122 $this->tpl->setVariable(
"LEV", $l[
"title"]);
124 $tr = $this->thresholds[$l[
"id"]][$a_set[
"tref_id"]] ?? 0;
125 if ((
int) $tr !== 0) {
126 $this->tpl->setVariable(
"THRESHOLD", (
int) $tr);
128 $this->tpl->setVariable(
"THRESHOLD",
"");
130 $this->tpl->parseCurrentBlock();
SkillTreeService $skill_tree_service
TableGUI class for skill list in survey.
ilSurveySkillThresholds $skill_thres
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setFormAction(string $a_form_action, bool $a_multipart=false)
static _lookupTitle(int $a_obj_id, int $a_tref_id=0)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
__construct(object $a_parent_obj, string $a_parent_cmd, ilObjSurvey $a_survey)
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
ilGlobalSkillTree $skill_tree