19 declare(strict_types=1);
45 private readonly
int $test_id
64 $cmd = $this->
ctrl->getCmd(
'show') .
'Cmd';
87 return $this->test_id;
90 private function saveSkillThresholdsCmd():
void 92 if ($this->request_data_collector->isPostRequest()) {
94 $assignment_list->loadFromDb();
99 $elements = $table->getInputElements($this->request_data_collector->retrieveArrayOfStringsFromPost(
'rendered'));
100 foreach ($elements as $elm) {
101 if (!$elm->checkInput()
102 || floor($elm->getInput()) !== $elm->getInput()) {
108 $elm->setValue($this->request_data_collector->strVal($elm->getPostVar()));
112 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'form_input_not_valid'));
118 foreach ($elements as $elm) {
119 $key = $elm->getPostVar();
121 if (preg_match(
'/^threshold_(\d+?):(\d+?)_(\d+?)$/', $key, $matches) && is_array($matches)) {
122 $value = $this->request_data_collector->int($key);
123 $threshold[$matches[1] .
':' . $matches[2]][$matches[3]] = $value;
128 $skill_level_thresholds = [];
130 foreach ($assignment_list->getUniqueAssignedSkills() as
$data) {
131 $skill =
$data[
'skill'];
132 $skillKey =
$data[
'skill_base_id'] .
':' .
$data[
'skill_tref_id'];
133 $levels = $skill->getLevelData();
135 $thresholds_by_level = [];
137 foreach ($levels as $level) {
138 if (isset($threshold[$skillKey][$level[
'id']])) {
141 $skill_level_threshold->setTestId($this->
getTestId());
142 $skill_level_threshold->setSkillBaseId(
$data[
'skill_base_id']);
143 $skill_level_threshold->setSkillTrefId(
$data[
'skill_tref_id']);
144 $skill_level_threshold->setSkillLevelId($level[
'id']);
146 $skill_level_threshold->setThreshold($threshold[$skillKey][$level[
'id']]);
147 $skill_level_thresholds[] = $skill_level_threshold;
148 $thresholds_by_level[] = $threshold[$skillKey][$level[
'id']];
152 $sorted_thresholds_by_level = $thresholds_by_level = array_values($thresholds_by_level);
153 sort($sorted_thresholds_by_level);
155 $sorted_thresholds_by_level != $thresholds_by_level ||
156 count($thresholds_by_level) != count(array_unique($thresholds_by_level))
158 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'ass_competence_respect_level_ordering'));
164 foreach ($skill_level_thresholds as $skill_level_threshold) {
165 $skill_level_threshold->saveToDb();
168 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'tst_msg_skl_lvl_thresholds_saved'),
true);
171 $this->
ctrl->redirect($this, self::CMD_SHOW_SKILL_THRESHOLDS);
176 if (
null === $table) {
180 $this->tpl->setContent($this->
ctrl->getHTML($table));
188 $skill_level_threshold_list->loadFromDb();
189 $table->setSkillLevelThresholdList($skill_level_threshold_list);
192 $assignment_list->loadFromDb();
194 $table->setData($table->completeCompetenceTitles(
195 $assignment_list->getUniqueAssignedSkills()
205 self::CMD_SHOW_SKILL_THRESHOLDS,
210 $table->initColumns();
220 return $assignment_list;
226 $threshold_list->setTestId($this->
getTestId());
228 return $threshold_list;
areQuestionAssignmentColumnsEnabled()
__construct(private readonly ilCtrlInterface $ctrl, private readonly ilGlobalTemplateInterface $tpl, private readonly ilLanguage $lng, private readonly ilDBInterface $db, private readonly RequestDataCollector $request_data_collector, private readonly int $test_id)
showSkillThresholdsCmd(?ilTestSkillLevelThresholdsTableGUI $table=null)
sort()
description: > Example for rendering a Sort Glyph.
buildSkillQuestionAssignmentList()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setQuestionAssignmentColumnsEnabled(bool $question_assignment_columns_enabled)
int $question_container_id
bool $question_assignment_columns_enabled
const CMD_SHOW_SKILL_THRESHOLDS
setQuestionContainerId(int $question_container_id)
buildSkillLevelThresholdList()
const CMD_SAVE_SKILL_THRESHOLDS