19 require_once
'./Modules/Test/classes/inc.AssessmentConstants.php';
44 $this->
tabs = $DIC->tabs();
47 include_once
"./Modules/TestQuestionPool/classes/class.assErrorText.php";
51 $this->
object->loadFromDb(
$id);
60 $hasErrors = (!$always) ? $this->
editQuestion(
true) :
false;
62 require_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
75 $this->
object->setErrorData($errordata);
76 $this->
object->removeErrorDataWithoutPosition();
81 $keys = $post[
'key'] ?? [];
82 $restructured_array = [];
87 (
float) str_replace(
',',
'.', $post[
'points'][$key])
90 return $restructured_array;
95 $this->
object->setQuestion(
96 $this->request->raw(
'question')
99 $this->
object->setErrorText(
100 $this->request->raw(
'errortext')
103 $this->
object->parseErrorText();
105 $points_wrong = str_replace(
",",
".", $this->request->raw(
'points_wrong') ??
'');
106 if (mb_strlen($points_wrong) == 0) {
107 $points_wrong = self::DEFAULT_POINTS_WRONG;
109 $this->
object->setPointsWrong((
float) $points_wrong);
111 if (!$this->
object->getSelfAssessmentEditingMode()) {
112 $this->
object->setTextSize($this->request->int(
'textsize'));
125 $this->
tabs->setTabActive(
'edit_question');
129 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
131 $this->editForm = $form;
133 $form->setFormAction($this->
ctrl->getFormAction($this));
135 $form->setMultipart(
false);
136 $form->setTableWidth(
"100%");
137 $form->setId(
"orderinghorizontal");
143 if (count($this->
object->getErrorData()) || $checkonly) {
149 $form->addCommandButton(
"analyze", $this->
lng->txt(
'analyze_errortext'));
155 $form->setValuesByPost();
156 $errors = !$form->checkInput();
157 $form->setValuesByPost();
164 $this->tpl->setVariable(
"QUESTION_DATA", $form->getHTML());
176 $header->setTitle($this->
lng->txt(
"errors_section"));
179 include_once
"./Modules/TestQuestionPool/classes/class.ilErrorTextWizardInputGUI.php";
182 $errordata->setValueName($this->
lng->txt(
'text_correct'));
183 $errordata->setValues($this->
object->getErrorData());
189 $points_wrong->setMaxValue(0);
190 $points_wrong->setMaxvalueShouldBeLess(
true);
191 $points_wrong->setValue($this->
object->getPointsWrong());
192 $points_wrong->setInfo($this->
lng->txt(
"points_wrong_info"));
193 $points_wrong->setSize(6);
194 $points_wrong->setRequired(
true);
208 $errortext->setRequired(
true);
209 $errortext->setInfo($this->
lng->txt(
"errortext_info"));
210 $errortext->setRows(10);
211 $errortext->setCols(80);
214 if (!$this->
object->getSelfAssessmentEditingMode()) {
217 $textsize->
setValue(mb_strlen($this->
object->getTextSize()) ? $this->
object->getTextSize() : 100.0);
218 $textsize->setInfo($this->
lng->txt(
"textsize_errortext_info"));
219 $textsize->setSize(6);
220 $textsize->setSuffix(
"%");
221 $textsize->setMinValue(10);
222 $textsize->setRequired(
true);
235 $this->
object->setErrorsFromParsedErrorText();
257 $graphical_output =
false,
258 $result_output =
false,
259 $show_question_only =
true,
260 $show_feedback =
false,
261 $show_correct_solution =
false,
262 $show_manual_scoring =
false,
263 $show_question_text =
true 266 $template =
new ilTemplate(
"tpl.il_as_qpl_errortext_output_solution.html",
true,
true,
"Modules/TestQuestionPool");
272 $selections[
'best'] = $this->
object->getBestSelection();
274 $reached_points = $this->
object->getPoints();
275 if ($active_id > 0 && !$show_correct_solution) {
276 $reached_points = $this->
object->getReachedPoints($active_id, $pass);
279 if ($result_output ===
true) {
280 $resulttext = ($reached_points == 1) ?
"(%s " . $this->
lng->txt(
"point") .
")" :
"(%s " . $this->
lng->txt(
"points") .
")";
281 $template->setVariable(
"RESULT_OUTPUT", sprintf($resulttext, $reached_points));
284 if ($this->
object->getTextSize() >= 10) {
285 $template->setVariable(
"STYLE",
" style=\"font-size: " . $this->
object->getTextSize() .
"%;\"");
288 if ($show_question_text ===
true) {
289 $template->setVariable(
"QUESTIONTEXT", $this->
object->getQuestionForHTMLOutput());
292 $correctness_icons = [
296 $errortext = $this->
object->assembleErrorTextOutput($selections, $graphical_output, $show_correct_solution,
false, $correctness_icons);
298 $template->setVariable(
"ERRORTEXT", $errortext);
299 $questionoutput = $template->get();
301 $solutiontemplate =
new ilTemplate(
"tpl.il_as_tst_solution_output.html",
true,
true,
"Modules/TestQuestionPool");
304 if ($show_feedback) {
307 $feedback .= mb_strlen($fb) ? $fb :
'';
311 $feedback .= mb_strlen($fb) ? $fb :
'';
313 if (mb_strlen($feedback)) {
319 $solutiontemplate->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
320 $solutiontemplate->setVariable(
"FEEDBACK", $this->
object->prepareTextareaOutput($feedback,
true));
323 $solutiontemplate->setVariable(
"SOLUTION_OUTPUT", $questionoutput);
325 $solutionoutput = $solutiontemplate->get();
326 if (!$show_question_only) {
330 return $solutionoutput;
333 public function getPreview($show_question_only =
false, $showInlineFeedback =
false): string
345 $is_postponed =
false,
346 $use_post_solutions =
false,
347 $show_feedback =
false 363 $template =
new ilTemplate(
"tpl.il_as_qpl_errortext_output.html",
true,
true,
"Modules/TestQuestionPool");
365 if ($this->
object->getTextSize() >= 10) {
366 $template->setVariable(
"STYLE",
" style=\"font-size: " . $this->
object->getTextSize() .
"%;\"");
368 $template->setVariable(
"QUESTIONTEXT", $this->
object->getQuestionForHTMLOutput());
369 $errortext = $this->
object->assembleErrorTextOutput($selections);
373 $template->setVariable(
"ERRORTEXT", $errortext);
374 $template->setVariable(
"ERRORTEXT_ID",
"qst_" . $this->
object->getId());
375 $template->setVariable(
"ERRORTEXT_VALUE", join(
',', $selections[
'user']));
377 $this->tpl->addOnLoadCode(
'il.test.player.errortext.init()');
378 $this->tpl->addJavascript(
'./Modules/TestQuestionPool/templates/default/errortext.js');
379 $questionoutput = $template->get();
381 if ($show_question_only) {
382 return $questionoutput;
394 if ($active_id > 0) {
396 $solutions = $this->
object->getSolutionValues($active_id, $pass ?? 0,
true);
397 foreach ($solutions as $solution) {
398 $selections[] = $solution[
'value1'];
408 if (!$this->
object->feedbackOBJ->specificAnswerFeedbackExists()) {
412 $feedback =
'<table class="test_specific_feedback"><tbody>';
413 $elements = $this->
object->getErrorData();
414 foreach ($elements as
$index => $element) {
416 $feedback .=
'<td class="text-nowrap">' .
$index .
'. ' . $element->getTextWrong() .
':</td>';
417 $feedback .=
'<td>' . $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
423 $feedback .=
'</tr>';
425 $feedback .=
'</tbody></table>';
427 return $this->
object->prepareTextareaOutput($feedback,
true);
466 $errortext = $this->
object->getErrorText();
469 foreach ($relevant_answers as $answer_chosen) {
470 $passdata[$answer_chosen[
'active_fi'] .
'-' . $answer_chosen[
'pass']][$answer_chosen[
'value2']][] = $answer_chosen[
'value1'];
474 foreach ($passdata as
$key => $pass) {
475 $passdata[
$key] = $this->
object->createErrorTextOutput($pass);
476 $html .= $passdata[
$key] .
'<hr /><br />';
484 $answers_by_active_and_pass = [];
486 foreach ($relevant_answers as $row) {
487 $key = $row[
'active_fi'] .
':' . $row[
'pass'];
489 if (!isset($answers_by_active_and_pass[
$key])) {
490 $answers_by_active_and_pass[
$key] = [
'user' => []];
493 $answers_by_active_and_pass[
$key][
'user'][] = $row[
'value1'];
498 foreach ($answers_by_active_and_pass as $answer) {
499 $error_text =
'<div class="errortext">' . $this->
object->assembleErrorTextOutput($answer) .
'</div>';
500 $error_text_hashed = md5($error_text);
502 if (!isset($answers[$error_text_hashed])) {
503 $answers[$error_text_hashed] = [
504 'answer' => $error_text,
'frequency' => 0
508 $answers[$error_text_hashed][
'frequency']++;
511 return array_values($answers);
517 include_once
"./Modules/TestQuestionPool/classes/forms/class.ilAssErrorTextCorrectionsInputGUI.php";
520 $errordata->setValueName($this->
lng->txt(
'text_correct'));
521 $errordata->setValues($this->
object->getErrorData());
527 $points_wrong->setMaxValue(0);
528 $points_wrong->setMaxvalueShouldBeLess(
true);
529 $points_wrong->setValue($this->
object->getPointsWrong());
530 $points_wrong->setInfo($this->
lng->txt(
'points_wrong_info'));
531 $points_wrong->setSize(6);
532 $points_wrong->setRequired(
true);
541 $existing_errordata = $this->
object->getErrorData();
542 $this->
object->flushErrorData();
543 $new_errordata = $this->request->raw(
'errordata');
545 foreach ($new_errordata[
'points'] as
$index => $points) {
546 $errordata[
$index] = $existing_errordata[
$index]->withPoints(
547 (
float) str_replace(
',',
'.', $points)
550 $this->
object->setErrorData($errordata);
551 $this->
object->setPointsWrong((
float) str_replace(
',',
'.', $form->
getInput(
'points_wrong')));
isTestPresentationContext()
generateQuestionOutput($selections, $show_question_only)
hasCorrectSolution($activeId, $passIndex)
generateCorrectnessIconsForCorrectness(int $correctness)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
populateQuestionSpecificFormPart(ilPropertyFormGUI $form)
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
getSolutionOutput( $active_id, $pass=null, $graphical_output=false, $result_output=false, $show_question_only=true, $show_feedback=false, $show_correct_solution=false, $show_manual_scoring=false, $show_question_text=true)
Get the question solution output The getSolutionOutput() method is used to print either the user's pa...
addBasicQuestionFormProperties(ilPropertyFormGUI $form)
populateAnswerSpecificFormPart(ilPropertyFormGUI $form)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const DEFAULT_POINTS_WRONG
const CSS_CLASS_FEEDBACK_CORRECT
getAfterParticipationSuppressionAnswerPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
populateTaxonomyFormSection(ilPropertyFormGUI $form)
writeQuestionSpecificPostData(ilPropertyFormGUI $form)
Extracts the question specific values from $_POST and applies them to the data object.
getTestOutput( $active_id, $pass, $is_postponed=false, $use_post_solutions=false, $show_feedback=false)
addQuestionFormCommandButtons(ilPropertyFormGUI $form)
setValue(string $a_value)
getAfterParticipationSuppressionQuestionPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
setKeyName($a_name)
Set key name.
setErrorMessage(string $errormessage)
writeQuestionGenericPostData()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
saveCorrectionsFormProperties(ilPropertyFormGUI $form)
writePostData(bool $always=false)
{}
getSpecificFeedbackOutput(array $user_solution)
getPreview($show_question_only=false, $showInlineFeedback=false)
const CSS_CLASS_FEEDBACK_WRONG
writeAnswerSpecificPostData(ilPropertyFormGUI $form)
Extracts the answer specific values from $_POST and applies them to the data object.
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...
analyze()
Parse the error text.
restructurePostDataForSaving(array $post)
editQuestion($checkonly=false)
Creates an output of the edit form for the question.
saveTaxonomyAssignments()
getILIASPage(string $html="")
Returns the ILIAS Page around a question.
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getUsersSolutionFromPreviewOrDatabase(int $active_id=0, ?int $pass=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getAnswersFrequency($relevant_answers, $question_index)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getGenericFeedbackOutput(int $active_id, ?int $pass)
getAggregatedAnswersView(array $relevant_answers)
Returns an html string containing a question specific representation of the answers so far given in t...