19 declare(strict_types=1);
63 protected readonly \
ilTree $tree,
71 protected readonly
int $test_id,
75 protected readonly
Request $request,
76 protected readonly \
ilObjUser $active_user
83 return $this->score_settings_repo->getFor($this->test_id);
87 $this->score_settings_repo->store($score_settings);
95 if (!$this->
access->checkAccess(
'write',
'', $this->test_gui->getRefId())) {
96 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'cannot_edit_test'),
true);
97 $this->
ctrl->redirectByClass([\ilRepositoryGUI::class, \ilObjTestGUI::class, \ilInfoScreenGUI::class]);
102 $nextClass = $this->
ctrl->getNextClass();
103 switch ($nextClass) {
105 $cmd = $this->
ctrl->getCmd(self::CMD_SHOW_FORM);
108 case self::CMD_SHOW_FORM:
111 case self::CMD_SAVE_FORM:
114 case self::CMD_CONFIRMED_RECALC:
120 $this->test_object->recalculateScores(
true);
121 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_score_settings_modified_and_recalc"),
true);
122 $this->
ctrl->redirect($this, self::CMD_SHOW_FORM);
124 case self::CMD_CANCEL_RECALC:
125 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"msg_score_settings_not_modified"),
true);
130 throw new \Exception(
'unknown command: ' . $cmd);
137 if ($form ===
null) {
141 $this->tpl->setContent($this->ui_renderer->render($form));
147 ->withRequest($this->request);
149 $settings = $form->getData();
151 if (is_null($settings)) {
152 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'form_input_not_valid'));
158 $settings->getScoringSettings(),
166 if ($this->
logger->isLoggingEnabled()) {
167 $this->
logger->logTestAdministrationInteraction(
168 $this->
logger->getInteractionFactory()->buildTestAdministrationInteraction(
169 $this->test_gui->getRefId(),
170 $this->active_user->getId(),
171 TestAdministrationInteractionTypes::SCORING_SETTINGS_MODIFIED,
172 $settings->getArrayForLog($this->
logger->getAdditionalInformationGenerator())
176 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
177 $this->
ctrl->redirect($this, self::CMD_SHOW_FORM);
184 $this->request->getParsedBody()[self::F_CONFIRM_SETTINGS]
193 $this->ui_factory->input()->field(),
198 'user_date_format' => $this->active_user->getDateTimeFormat(),
199 'user_time_zone' => $this->active_user->getTimeZone()
206 'scoring' => $settings->getScoringSettings()->toForm(...$ui_pack)
207 ->withDisabled($disabled_flag),
208 'summary' => $settings->getResultSummarySettings()->toForm(...array_merge($ui_pack, [$environment])),
209 'details' => $settings->getResultDetailsSettings()->toForm(
212 'gameification' => $settings->getGamificationSettings()->toForm(...$ui_pack)
215 $action = $this->
ctrl->getFormAction($this, self::CMD_SAVE_FORM);
216 $form = $this->ui_factory->input()->container()->form()
217 ->standard($action, $sections)
218 ->withAdditionalTransformation(
219 $this->
refinery->custom()->transformation(
220 function ($v) use ($settings) {
222 ->withScoringSettings($v[
'scoring'])
223 ->withResultSummarySettings($v[
'summary'])
224 ->withResultDetailsSettings($v[
'details'])
225 ->withGamificationSettings($v[
'gameification'])
235 $result_summary_settings = $this->test_object->getScoreSettings()
236 ->getResultSummarySettings();
237 if ($result_summary_settings->getScoreReporting()->isReportingEnabled()) {
241 if ($result_summary_settings->getScoreReporting() === ScoreReportingTypes::SCORE_REPORTING_DATE) {
242 return $result_summary_settings->getResultSummarySettings()
243 ->getReportingDate() <= new \DateTimeImmutable(
'now',
new \
DateTimeZone(
'UTC'));
251 if (!$this->test_object->participantDataExist()) {
265 $taxononmy_translator = new \ilTestQuestionFilterLabelTranslator($this->db, $this->
lng);
266 $taxononmy_translator->loadLabelsFromTaxonomyIds($available_taxonomy_ids);
268 $taxonomy_options = [];
269 foreach ($available_taxonomy_ids as $tax_id) {
270 $taxonomy_options[$tax_id] = $taxononmy_translator->getTaxonomyTreeLabel($tax_id);
272 return $taxonomy_options;
276 SettingsScoring $new_settings,
277 SettingsScoring $old_settings
279 $settings_changed = (
280 $new_settings->getCountSystem() !== $old_settings->getCountSystem() ||
281 $new_settings->getScoreCutting() !== $old_settings->getScoreCutting() ||
282 $new_settings->getPassScoring() !== $old_settings->getPassScoring()
286 $this->test_object->participantDataExist() &&
294 $confirmation = new \ilConfirmationGUI();
295 $confirmation->setHeaderText($this->
lng->txt(
'tst_trigger_result_refreshing'));
296 $confirmation->setFormAction($this->
ctrl->getFormAction($this));
297 $confirmation->setCancel($this->
lng->txt(
'cancel'), self::CMD_CANCEL_RECALC);
298 $confirmation->setConfirm($this->
lng->txt(
'confirm'), self::CMD_CONFIRMED_RECALC);
299 $confirmation->addHiddenItem(self::F_CONFIRM_SETTINGS, base64_encode(serialize($request)));
300 $this->tpl->setContent($this->
ctrl->getHTML($confirmation));
Readable part of repository interface to ilComponentDataDB.
const CMD_CONFIRMED_RECALC
TestAdministrationInteractionTypes
areScoringSettingsWritable()
isScoreRecalculationRequired(SettingsScoring $new_settings, SettingsScoring $old_settings)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
isScoreReportingAvailable()
const CMD_SHOW_FORM
command constants
static getUsageOfObject(int $a_obj_id, bool $a_include_titles=false)
executeCommand()
Command Execution.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
storeScoreSettings(ScoreSettings $score_settings)
showForm(?Form $form=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(protected readonly \ilCtrlInterface $ctrl, protected readonly \ilAccessHandler $access, protected readonly \ilLanguage $lng, protected readonly \ilTree $tree, protected readonly \ilDBInterface $db, protected readonly \ilComponentRepository $component_repository, protected readonly \ilObjTestGUI $test_gui, protected readonly \ilGlobalTemplateInterface $tpl, protected readonly \ilTabsGUI $tabs, protected readonly TestLogger $logger, protected readonly ScoreSettingsRepository $score_settings_repo, protected readonly int $test_id, protected readonly UIFactory $ui_factory, protected readonly UIRenderer $ui_renderer, protected readonly Refinery $refinery, protected readonly Request $request, protected readonly \ilObjUser $active_user)
const SETTINGS_SUBTAB_ID_SCORING
__construct(Container $dic, ilPlugin $plugin)
showConfirmation(Request $request)