19 declare(strict_types=1);
36 private const CMD_SHOW =
'showManScoringByQuestionParticipantsTable';
37 private const CMD_SAVE =
'saveManScoringByQuestion';
48 $this->
lng->loadLanguageModule(
'form');
50 $this->
ctrl->saveParameterByClass(self::class,
'q_id');
51 $uri = ILIAS_HTTP_PATH .
'/' . $this->
ctrl->getLinkTargetByClass(
52 [\ilObjTestGUI::class, self::class],
55 $this->
ctrl->clearParameterByClass(self::class,
'q_id');
62 $this->action_parameter_token,
65 [
'manual_scoring',
'by_question'],
73 return self::CMD_SHOW;
78 return 'man_scoring_by_qst';
88 if (!$this->test_access->checkScoreParticipantsAccess()
89 || !$this->
object->getGlobalSettings()->isManualScoringEnabled()) {
90 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'cannot_edit_test'),
true);
91 $this->
ctrl->redirectByClass([\ilRepositoryGUI::class, \ilObjTestGUI::class, \ilInfoScreenGUI::class]);
94 $test_question_properties = $this->testquestionsrepository
95 ->getQuestionPropertiesForTest($this->
object);
97 if ($test_question_properties === []) {
98 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'manscoring_questions_not_found'));
103 $this->ui_factory->dropdown()->standard(
106 $this->
lng->txt(
'select_question')
110 $question_id = $this->testrequest->getQuestionId();
111 if ($question_id === 0) {
112 $question_id = reset($test_question_properties)->getQuestionId();
118 $this->action_parameter_token,
124 $affected_rows = $this->testrequest->raw($this->row_id_token->getName());
131 $this->
user->getDateTimeFormat(),
132 $this->
http->request(),
134 $this->
ctrl->getLinkTargetByClass(
135 [\ilObjTestGUI::class, self::class],
141 $this->participant_access_filter,
148 if ($modal !==
null) {
149 $content[] = $modal->withOnLoad($modal->getShowSignal());
152 $this->tpl->setContent($this->ui_renderer->render($content));
157 $active_id = $this->testrequest->getActiveId();
158 $question_id = $this->testrequest->getQuestionId();
159 $attempt = $this->testrequest->getPassId();
160 if ($active_id === 0 || $question_id === 0
161 || !$this->test_access->checkScoreParticipantsAccessForActiveId($active_id, $this->object->getTestId())) {
162 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'cannot_edit_test'),
true);
163 $this->
ctrl->redirectByClass(\ilObjTestGUI::class);
166 $question_gui = $this->
object->createQuestionGUI(
'', $question_id);
167 $previously_reached_points = $question_gui->getObject()->getReachedPoints($active_id, $attempt);
168 $available_points = $question_gui->getObject()->getMaximumPoints();
174 $previously_reached_points,
178 if (!$form->checkInput()) {
179 $form->setValuesByPost();
191 if (isset($feedback[
'finalized_evaluation'])
192 && $feedback[
'finalized_evaluation'] === 1) {
193 $new_reached_points = $previously_reached_points;
194 $feedback_text = $feedback[
'feedback'];
196 $new_reached_points = $this->
refinery->kindlyTo()->float()
197 ->transform($form->getInput(
'points'));
199 $form->getInput(
'feedback'),
204 if ($new_reached_points !== $previously_reached_points) {
219 $finalized = $this->
refinery->byTrying([
220 $this->
refinery->kindlyTo()->bool(),
222 ])->
transform($form->getInput(
'finalized'));
223 $this->
object->saveManualFeedback(
231 if ($this->
logger->isLoggingEnabled()) {
232 $this->
logger->logScoringInteraction(
233 $this->
logger->getInteractionFactory()->buildScoringInteraction(
236 $this->
user->getId(),
238 TestScoringInteractionTypes::QUESTION_GRADED,
243 ->getAdditionalInformationGenerator()->getTrueFalseTagForBool($finalized)
249 $this->tpl->setOnScreenMessage(
252 $this->
lng->txt(
'tst_saved_manscoring_by_question_successfully'),
253 $question_gui->getObject()->getTitleForHTMLOutput(),
262 $row_info_array = explode(
'_', $row_id);
264 if (count($row_info_array) !== 2) {
265 $this->
http->close();
268 [$active_id, $attempt] = $this->
refinery->container()->mapValues(
272 if (!$this->
getTestAccess()->checkScoreParticipantsAccessForActiveId($active_id, $this->
object->getTestId())) {
273 $this->
http->close();
276 $this->
http->saveResponse(
277 $this->
http->response()->withBody(
279 $this->ui_renderer->renderAsync(
280 $this->buildFeedbackModal($question_id, $active_id, $attempt)
285 $this->
http->sendResponse();
286 $this->
http->close();
295 $question_gui = $this->
object->createQuestionGUI(
'', $question_id);
305 $reached_points = $question_gui->getObject()->getReachedPoints($active_id, $attempt);
306 $available_points = $question_gui->getObject()->getMaximumPoints();
307 $content[] = $this->ui_factory->panel()->standard(
308 $this->
lng->txt(
'scoring'),
309 $this->ui_factory->legacy()->content(
311 $this->
lng->txt(
'part_received_a_of_b_points'),
319 if ($this->
object->getShowSolutionSuggested() && $suggested_solution !==
'') {
320 $content[] = $this->ui_factory->legacy()->content(
321 $this->ui_factory->panel()->standard(
322 $this->
lng->txt(
'solution_hint'),
328 $content[] = $this->ui_factory->legacy()->content(($form ?? $this->
buildForm(
336 return $this->ui_factory->modal()->roundtrip(
347 return $this->ui_factory->panel()->standard(
348 $question_gui->
getObject()->getTitleForHTMLOutput(),
349 $this->ui_factory->legacy()->content(
356 $this->object->getShowSolutionFeedback(),
367 return $this->ui_factory->panel()->standard(
368 $this->
lng->txt(
'autosavecontent'),
369 $this->ui_factory->legacy()->content(
376 $this->object->getShowSolutionFeedback(),
384 if ($this->
object->getAnonymity() ===
true) {
385 return $this->
lng->txt(
'answers_of') .
' ' . $this->
lng->txt(
'anonymous');
387 return $this->
lng->txt(
'answers_of') .
' ' . $this->
object->getCompleteEvaluationData()
388 ->getParticipant($active_id)
396 float $reached_points,
397 float $available_points
400 $finalized = isset($feedback[
'finalized_evaluation'])
401 && $feedback[
'finalized_evaluation'] === 1;
403 $form = new \ilPropertyFormGUI();
404 $form->setFormAction($this->
buildFormTarget($question_id, $active_id, $attempt));
405 $form->setTitle($this->
lng->txt(
'manscoring'));
406 $form->addCommandButton(self::CMD_SAVE, $this->
lng->txt(
'save'));
410 $feedback_input = new \ilNonEditableValueGUI(
411 $this->
lng->txt(
'set_manual_feedback'),
416 $feedback_input = new \ilTextAreaInputGUI(
417 $this->
lng->txt(
'set_manual_feedback'),
420 $feedback_input->setUseRte(
true);
422 $feedback_input->setValue($feedback[
'feedback'] ??
'');
423 $form->addItem($feedback_input);
425 $reached_points_input = new \ilNumberInputGUI(
426 $this->
lng->txt(
'tst_change_points_for_question'),
429 $reached_points_input->allowDecimals(
true);
430 $reached_points_input->setSize(5);
431 $reached_points_input->setMaxValue($available_points,
true);
432 $reached_points_input->setMinValue(0);
433 $reached_points_input->setDisabled($finalized);
434 $reached_points_input->setValue((
string) $reached_points);
435 $reached_points_input->setClientSideValidation(
true);
436 $form->addItem($reached_points_input);
438 $finalized_input = new \ilCheckboxInputGUI(
439 $this->
lng->txt(
'finalized_evaluation'),
442 $finalized_input->setChecked($finalized);
443 $form->addItem($finalized_input);
453 $this->
ctrl->setParameterByClass(self::class,
'q_id', $question_id);
454 $this->
ctrl->setParameterByClass(self::class,
'active_id', $active_id);
455 $this->
ctrl->setParameterByClass(self::class,
'pass_id', $attempt);
456 $target = $this->
ctrl->getFormAction($this, self::CMD_SAVE);
457 $this->
ctrl->clearParameterByClass(self::class,
'q_id');
458 $this->
ctrl->clearParameterByClass(self::class,
'active_id');
459 $this->
ctrl->clearParameterByClass(self::class,
'pass_id');
472 $this->
ctrl->setParameterByClass(self::class,
'q_id', $v->getGeneralQuestionProperties()->getQuestionId());
473 return $this->ui_factory->link()->standard(
475 $this->
ctrl->getLinkTargetByClass(self::class, $this->getDefaultCommand())
480 $this->
ctrl->clearParameterByClass(self::class,
'q_id');
486 $question_properties = $test_question_properties->getGeneralQuestionProperties();
487 $lang_var = $question_properties->getAvailablePoints() === 1.0 ? $this->
lng->txt(
'point') : $this->
lng->txt(
'points');
488 return "{$this->refinery->encode()->htmlSpecialCharsAsEntities()->transform($question_properties->getTitle())} " 489 .
"({$question_properties->getAvailablePoints()} {$lang_var}) " 490 .
"[{$this->lng->txt('question_id_short')}: {$question_properties->getQuestionId()}]";
495 $math_jax_setting = new \ilSetting(
'MathJax');
496 if ($math_jax_setting->get(
'enable')) {
497 $this->tpl->addJavaScript($math_jax_setting->get(
'path_to_mathjax'));
507 $this->tpl->addJavaScript(
'node_modules/tinymce/tinymce.min.js');
508 $this->tpl->addOnLoadCode(
" 511 document.getElementById('ilContentContainer'), 512 {childList: true, subtree: true} 515 const o = new MutationObserver( 520 selector: 'textarea.RTEditor', 523 fix_list_elements: true, 527 toolbar: 'bold italic underline strikethrough | undo redo | bullist numlist', 528 toolbar_mode: 'sliding', 529 init_instance_callback: () => {aO(o);} saveManScoringByQuestion()
showManScoringByQuestionParticipantsTable(?RoundTripModal $modal=null)
buildFeedbackModal(int $question_id, int $active_id, int $attempt, ?\ilPropertyFormGUI $form=null)
static _setReachedPoints(int $active_id, int $question_id, float $points, float $maxpoints, int $pass, bool $manualscoring)
Sets the points, a learner has reached answering the question Additionally objective results are upda...
getAutoSavedSolutionOutput(int $active_id, int $pass, bool $graphical_output=false, bool $result_output=false, bool $show_question_only=true, bool $show_feedback=false, bool $show_correct_solution=false, bool $show_manual_scoring=false, bool $show_question_text=true, bool $show_autosave_title=false, bool $show_inline_feedback=false)
static _getParticipantId($active_id)
Get user id for active id.
static _getRichTextEditor()
Returns the identifier for the Rich Text Editor.
static _getSuggestedSolutionOutput(int $question_id)
Interface Observer Contains several chained tasks and infos about them.
URLBuilderToken $row_id_token
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
acquireParameters(array $namespace, string ... $names)
TestScoringInteractionTypes
getAnswerDetail(int $question_id, string $row_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
buildQuestionTitleWithPoints(TestQuestionProperties $test_question_properties)
buildSolutionPanel(\assQuestionGUI $question_gui, int $active_id, int $attempt)
static getSingleManualFeedback(int $active_id, int $question_id, int $pass)
static http()
Fetches the global http state from ILIAS.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getUsedHTMLTagsAsString(string $a_module="")
Returns a string of all allowed HTML tags for text editing.
buildSelectableQuestionsArray(array $question_data)
URLBuilderToken $action_parameter_token
static ofString(string $string)
Creates a new stream with an initial value.
const TAB_ID_MANUAL_SCORING
getModalTitle(int $active_id)
__construct(\ilObjTest $object, private readonly \ilUIService $ui_service)
__construct(Container $dic, ilPlugin $plugin)
buildFormTarget(int $question_id, int $active_id, int $attempt)
getSolutionOutput(int $active_id, ?int $pass=null, bool $graphical_output=false, bool $result_output=false, bool $show_question_only=true, bool $show_feedback=false, bool $show_correct_solution=false, bool $show_manual_scoring=false, bool $show_question_text=true, bool $show_inline_feedback=true)
buildForm(int $attempt, int $active_id, int $question_id, float $reached_points, float $available_points)
buildAutosavedSolutionPanel(assQuestionGUI $question_gui, int $active_id, int $attempt)
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)