56 $this->questionAssignmentColumnsEnabled =
false;
77 $cmd = $this->ctrl->getCmd(
'show') .
'Cmd';
106 private function saveSkillThresholdsCmd()
108 require_once
'Modules/Test/classes/class.ilTestSkillLevelThreshold.php';
110 if (strtolower(
$_SERVER[
'REQUEST_METHOD']) ==
'post') {
112 $assignmentList->loadFromDb();
117 $elements = $table->getInputElements((array) (
$_POST[
'rendered'] ?? []));
118 foreach ($elements as $elm) {
119 if (!$elm->checkInput()) {
123 $elm->setValueByArray(
$_POST);
131 $threshold = array();
132 foreach (
$_POST as $key => $value) {
134 if (preg_match(
'/^threshold_(\d+?):(\d+?)_(\d+?)$/', $key, $matches) && is_array($matches)) {
135 $threshold[$matches[1] .
':' . $matches[2]][$matches[3]] = $value;
140 $skillLevelThresholds = array();
142 foreach ($assignmentList->getUniqueAssignedSkills() as
$data) {
143 $skill =
$data[
'skill'];
144 $skillKey =
$data[
'skill_base_id'] .
':' .
$data[
'skill_tref_id'];
145 $levels = $skill->getLevelData();
147 $thresholds_by_level = array();
149 foreach ($levels as $level) {
150 if (isset($threshold[$skillKey]) && isset($threshold[$skillKey][$level[
'id']])) {
153 $skillLevelThreshold->setTestId($this->
getTestId());
154 $skillLevelThreshold->setSkillBaseId(
$data[
'skill_base_id']);
155 $skillLevelThreshold->setSkillTrefId(
$data[
'skill_tref_id']);
156 $skillLevelThreshold->setSkillLevelId($level[
'id']);
158 $skillLevelThreshold->setThreshold($threshold[$skillKey][$level[
'id']]);
159 $skillLevelThresholds[] = $skillLevelThreshold;
160 $thresholds_by_level[] = $threshold[$skillKey][$level[
'id']];
164 $sorted_thresholds_by_level = $thresholds_by_level = array_values($thresholds_by_level);
165 sort($sorted_thresholds_by_level);
167 $sorted_thresholds_by_level != $thresholds_by_level ||
168 count($thresholds_by_level) != count(array_unique($thresholds_by_level))
175 foreach ($skillLevelThresholds as $skillLevelThreshold) {
176 $skillLevelThreshold->saveToDb();
179 ilUtil::sendSuccess($this->lng->txt(
'tst_msg_skl_lvl_thresholds_saved'),
true);
182 $this->ctrl->redirect($this, self::CMD_SHOW_SKILL_THRESHOLDS);
190 if (null === $table) {
194 $this->tpl->setContent($this->ctrl->getHTML($table));
205 $skillLevelThresholdList->loadFromDb();
206 $table->setSkillLevelThresholdList($skillLevelThresholdList);
209 $assignmentList->loadFromDb();
211 $table->setData($table->completeCompetenceTitles(
212 $assignmentList->getUniqueAssignedSkills()
219 require_once
'Modules/Test/classes/tables/class.ilTestSkillLevelThresholdsTableGUI.php';
223 self::CMD_SHOW_SKILL_THRESHOLDS,
228 $table->initColumns();
235 require_once
'Modules/TestQuestionPool/classes/class.ilAssQuestionSkillAssignmentList.php';
239 return $assignmentList;
244 require_once
'Modules/Test/classes/class.ilTestSkillLevelThresholdList.php';
246 $thresholdList->setTestId($this->
getTestId());
248 return $thresholdList;
This class provides processing control methods.
$questionAssignmentColumnsEnabled
areQuestionAssignmentColumnsEnabled()
setQuestionContainerId($questionContainerId)
buildSkillQuestionAssignmentList()
showSkillThresholdsCmd(ilTestSkillLevelThresholdsTableGUI $table=null)
setQuestionAssignmentColumnsEnabled($questionAssignmentColumnsEnabled)
const CMD_SHOW_SKILL_THRESHOLDS
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
buildSkillLevelThresholdList()
const CMD_SAVE_SKILL_THRESHOLDS
__construct(ilCtrl $ctrl, ilGlobalTemplateInterface $tpl, ilLanguage $lng, ilDBInterface $db, $testId)