43 insertGapCodeAtCaret:
function() {
44 return this.each(
function(i) {
45 var code_start =
'[gap]';
46 var code_end =
'[/gap]';
47 if (typeof tinyMCE !==
'undefined' && typeof tinyMCE.get(
'cloze_text') !==
'undefined') {
48 var ed = tinyMCE.get(
'cloze_text');
49 il.ClozeHelper.internetExplorerTinyMCECursorFix(ed);
50 ed.selection.setContent(code_start + ed.selection.getContent() + code_end);
54 if (document.selection) {
57 sel = document.selection.createRange();
58 sel.text = code_start + sel.text + code_end;
60 }
else if (this.selectionStart || this.selectionStart ==
'0') {
62 var startPos = this.selectionStart;
63 var endPos = this.selectionEnd;
64 var scrollTop = this.scrollTop;
65 this.value = this.value.substring(0, startPos)
67 + this.value.substring(startPos, endPos)
69 + this.value.substring(endPos, this.value.length);
71 this.scrollTop = scrollTop;
73 this.value += code_start + code_end;
100 $this->ui_factory = $DIC[
'ui.factory'];
101 $this->ui_renderer = $DIC[
'ui.renderer'];
102 $this->db = $DIC[
'ilDB'];
106 $this->
object->loadFromDb(
$id);
109 $this->randomGroup = $this->
refinery->random();
114 if (preg_match(
"/^(removegap|addgap)_(\d+)$/", $cmd, $matches)) {
116 $this->gapIndex = $matches[2];
126 $hasErrors = (!$always) ? $this->
editQuestion(
true) :
false;
132 $this->request_data_collector->raw(
'cloze_text')
135 $this->
object->setQuestion(
136 $this->request_data_collector->raw(
'question')
140 $this->
object->setClozeText($cloze_text);
141 $this->
object->setTextgapRating($this->request_data_collector->raw(
'textgap_rating'));
142 $this->
object->setIdenticalScoring($this->request_data_collector->bool(
'identical_scoring') ??
false);
143 $this->
object->setFixedTextLength($this->request_data_collector->int(
'fixedTextLength') ?? 0);
151 $gaps = $this->request_data_collector->strArray(
'gap');
156 if ($this->
ctrl->getCmd() !==
'createGaps') {
157 $this->
object->clearGapAnswers();
160 $answer_trafo = $this->
refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->string());
161 $points_trafo = $this->
refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->float());
163 foreach (array_keys($gaps) as $idx) {
164 $cloze_type = $this->request_data_collector->int(
'clozetype_' . $idx);
165 $this->
object->setGapType($idx, $cloze_type);
167 $gap_idx = $this->request_data_collector->raw(
'gap_' . $idx);
170 $answer = $answer_trafo->transform($gap_idx[
'answer'] ?? []);
171 if ($this->
ctrl->getCmd() !==
'createGaps') {
172 if (!empty($answer)) {
173 foreach ($answer as $order => $value) {
174 $this->
object->addGapAnswer($idx, $order, $value);
177 $this->
object->addGapAnswer($idx, 0,
'');
181 $points = $points_trafo->transform($gap_idx[
'points'] ?? []);
182 foreach ($points as $order => $value) {
183 $this->
object->setGapAnswerPoints($idx, $order, $value);
188 $this->
object->setGapShuffle(0);
190 $gap_size = $this->request_data_collector->int(
'gap_' . $idx .
'_gapsize');
191 if ($gap_size !== 0) {
192 $this->
object->setGapSize($idx, $gap_size);
195 $this->
object->setGapShuffle($idx, $this->request_data_collector->int(
'shuffle_' . $idx));
199 $this->
object->getGap($idx)->clearItems();
201 $gap_idx_numeric = $this->request_data_collector->float(
'gap_' . $idx .
'_numeric');
202 if ($gap_idx_numeric !== 0.0) {
203 $this->
object->addGapAnswer($idx, 0, (
string) $gap_idx_numeric);
204 $this->
object->setGapAnswerLowerBound(
207 (
string) $this->request_data_collector->float(
'gap_' . $idx .
'_numeric_lower')
209 $this->
object->setGapAnswerUpperBound(
212 (
string) $this->request_data_collector->float(
'gap_' . $idx .
'_numeric_upper')
214 $this->
object->setGapAnswerPoints(
217 $this->request_data_collector->float(
'gap_' . $idx .
'_numeric_points')
220 if ($this->
ctrl->getCmd() !==
'createGaps') {
221 $this->
object->addGapAnswer($idx, 0,
'');
224 $this->
object->setGapAnswerLowerBound($idx, 0,
'');
225 $this->
object->setGapAnswerUpperBound($idx, 0,
'');
230 $ass_cloze_gab_combination->clearGapCombinationsFromDb($this->
object->getId());
232 $gap_combination = $this->request_data_collector->rawArray(
'gap_combination', 4);
233 if ($gap_combination !== []) {
234 $ass_cloze_gab_combination->saveGapCombinationToDb(
237 $this->request_data_collector->rawArray(
'gap_combination_values')
239 $this->
object->setGapCombinationsExists(
true);
243 if ($this->
ctrl->getCmd() !==
'createGaps') {
244 $this->
object->updateClozeTextFromGaps();
250 $this->
object->setClozeText($this->request_data_collector->string(
'cloze_quest'));
251 $this->
object->setTextgapRating($this->request_data_collector->string(
'textgap_rating'));
252 $this->
object->setIdenticalScoring($this->request_data_collector->bool(
'textgap_rating') ??
true);
253 $this->
object->setFixedTextLength($this->request_data_collector->int(
'fixedTextLength'));
262 bool $checkonly =
false,
263 ?
bool $is_save_cmd =
null 268 $this->editForm = $form;
270 $form->setFormAction($this->
ctrl->getFormAction($this));
272 $form->setMultipart(
false);
273 $form->setTableWidth(
"100%");
274 $form->setId(
"assclozetest");
286 $form->setValuesByPost();
287 $errors = !$form->checkInput();
288 $form->setValuesByPost();
290 $gap_combinations = $this->request_data_collector->raw(
'gap_combination');
291 if (is_array($gap_combinations)
292 && $gap_combinations !== []
294 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'points_non_numeric_or_negative_msg'));
311 foreach ($gap_combinations[
'points'] as $gaps_points) {
312 foreach ($gaps_points as $points) {
313 $points_standardized = str_replace(
',',
'.', $points);
314 if (!is_numeric($points_standardized)
315 || (
float) $points_standardized < 0) {
330 $cloze_text->setInfo($this->
lng->txt(
"close_text_hint"));
331 $cloze_text->setRows(10);
332 $cloze_text->setCols(80);
333 if (!$this->
object->getSelfAssessmentEditingMode()) {
335 $cloze_text->setUseRte(
true);
340 $cloze_text->setUseTagsForRteOnly(
false);
342 $cloze_text->setRTESupport($this->
object->getId(),
"qpl",
"assessment");
345 $tpl =
new ilTemplate(
"tpl.il_as_qpl_cloze_gap_button_code.html",
true,
true,
"components/ILIAS/TestQuestionPool");
349 $button_text_gap = $this->ui_factory->button()->standard($this->
lng->txt(
'text_gap'),
'')
353 $button_select_gap = $this->ui_factory->button()->standard($this->
lng->txt(
'select_gap'),
'')
357 $button_numeric_gap = $this->ui_factory->button()->standard($this->
lng->txt(
'numeric_gap'),
'')
370 $this->tpl->addOnloadCode(self::JS_INSERT_GAP_CODE_AT_CARET);
374 if (!$this->
object->getSelfAssessmentEditingMode()) {
377 "ci" => $this->
lng->txt(
"cloze_textgap_case_insensitive"),
378 "cs" => $this->
lng->txt(
"cloze_textgap_case_sensitive"),
379 "l1" => sprintf($this->
lng->txt(
"cloze_textgap_levenshtein_of"),
"1"),
380 "l2" => sprintf($this->
lng->txt(
"cloze_textgap_levenshtein_of"),
"2"),
381 "l3" => sprintf($this->
lng->txt(
"cloze_textgap_levenshtein_of"),
"3"),
382 "l4" => sprintf($this->
lng->txt(
"cloze_textgap_levenshtein_of"),
"4"),
383 "l5" => sprintf($this->
lng->txt(
"cloze_textgap_levenshtein_of"),
"5")
386 $textrating->setValue($this->
object->getTextgapRating());
390 $fixedTextLength =
new ilNumberInputGUI($this->
lng->txt(
"cloze_fixed_textlength"),
"fixedTextLength");
391 $ftl = $this->
object->getFixedTextLength();
393 $fixedTextLength->
setValue($ftl > 0 ? $ftl :
'');
394 $fixedTextLength->setMinValue(0);
395 $fixedTextLength->setSize(3);
396 $fixedTextLength->setMaxLength(6);
397 $fixedTextLength->setInfo($this->
lng->txt(
'cloze_fixed_textlength_description'));
398 $fixedTextLength->setRequired(
false);
399 $form->
addItem($fixedTextLength);
402 $identical_scoring =
new ilCheckboxInputGUI($this->
lng->txt(
"identical_scoring"),
"identical_scoring");
403 $identical_scoring->setValue(1);
404 $identical_scoring->setChecked($this->
object->getIdenticalScoring());
405 $identical_scoring->setInfo($this->
lng->txt(
'identical_scoring_desc'));
406 $identical_scoring->setRequired(
false);
407 $form->
addItem($identical_scoring);
414 return fn(
$id) =>
"var el = document.getElementById('{$id}').addEventListener('click', " 416 .
' e.preventDefault();' 417 .
" ClozeQuestionGapBuilder.addGapClickFunction('{$gap_type}');" 425 $combination_exists = $assClozeGapCombinationObject->combinationExistsForQid($this->
object->getId());
427 if ($combination_exists) {
428 $combinations = $assClozeGapCombinationObject->loadFromDb($this->
object->getId());
433 $new_builder->setValueByArray($json);
434 $new_builder->setValueCombinationFromDb($combinations);
441 $gap = $this->
object->getGaps();
446 $translate_type = [
'text',
'select',
'numeric'];
448 foreach ($gap as $content) {
450 $value = $content->getItemsRaw();
452 for ($j = 0, $jMax = count($value); $j < $jMax; $j++) {
453 if ($content->isNumericGap()) {
455 'answer' => $value[$j]->getAnswerText(),
456 'lower' => $value[$j]->getLowerBound(),
457 'upper' => $value[$j]->getUpperBound(),
458 'points' => $value[$j]->getPoints(),
464 'points' => $value[$j]->getPoints(),
468 if ($content->isSelectGap()) {
469 $shuffle = $content->getShuffle();
474 'type' => $translate_type[$content->getType()] ,
476 'shuffle' => $shuffle,
477 'text_field_length' => $content->getGapSize() > 0 ? $content->getGapSize() :
'',
478 'used_in_gap_combination' =>
true];
496 $gap = $this->
object->getGap($gapCounter);
503 $header->setTitle($this->
lng->txt(
"gap") .
" " . ($gapCounter + 1));
504 $form->addItem($header);
507 $gapcounter->setValue($gapCounter);
508 $form->addItem($gapcounter);
512 0 => $this->
lng->txt(
"text_gap"),
513 1 => $this->
lng->txt(
"select_gap"),
514 2 => $this->
lng->txt(
"numeric_gap")
517 $gaptype->setValue($gap->getType());
518 $form->addItem($gaptype);
523 if (count($gap->getItemsRaw()) == 0) {
528 if (count($gap->getItemsRaw()) == 0) {
535 if (count($gap->getItemsRaw()) == 0) {
538 foreach ($gap->getItemsRaw() as $item) {
552 $gapSizeFormItem =
new ilNumberInputGUI($this->
lng->txt(
'cloze_fixed_textlength'),
"gap_" . $gapCounter .
'_gapsize');
555 $gapSizeFormItem->setMinValue(0);
556 $gapSizeFormItem->setSize(3);
557 $gapSizeFormItem->setMaxLength(6);
558 $gapSizeFormItem->setInfo($this->
lng->txt(
'cloze_gap_size_info'));
559 $gapSizeFormItem->setValue($gap->getGapSize());
560 $form->addItem($gapSizeFormItem);
581 $values->setQuestionObject($this->
object);
582 $values->setSingleline(
true);
583 $values->setAllowMove(
false);
585 $values->setValues($gap->getItemsRaw());
586 $form->addItem($values);
589 $shuffle =
new ilCheckboxInputGUI($this->
lng->txt(
"shuffle_answers"),
"shuffle_" . $gapCounter .
"");
590 $shuffle->setValue(1);
591 $shuffle->setChecked($gap->getShuffle());
592 $shuffle->setRequired(
false);
593 $form->addItem($shuffle);
612 $values->setQuestionObject($this->
object);
613 $values->setSingleline(
true);
614 $values->setAllowMove(
false);
615 $values->setValues($gap->getItemsRaw());
616 $form->addItem($values);
618 if ($this->
object->getFixedTextLength() > 0) {
619 $values->setSize($this->
object->getFixedTextLength());
620 $values->setMaxLength($this->
object->getFixedTextLength());
640 if (!$this->
object->getSelfAssessmentEditingMode()) {
644 $lowerbound =
new ilFormulaInputGUI($this->
lng->txt(
'range_lower_limit'),
"gap_" . $gapCounter .
"_numeric_lower");
647 $upperbound =
new ilFormulaInputGUI($this->
lng->txt(
'range_upper_limit'),
"gap_" . $gapCounter .
"_numeric_upper");
650 $value =
new ilNumberInputGUI($this->
lng->txt(
'value'),
"gap_" . $gapCounter .
"_numeric");
653 $lowerbound =
new ilNumberInputGUI($this->
lng->txt(
'range_lower_limit'),
"gap_" . $gapCounter .
"_numeric_lower");
656 $upperbound =
new ilNumberInputGUI($this->
lng->txt(
'range_upper_limit'),
"gap_" . $gapCounter .
"_numeric_upper");
662 $value->setRequired(
true);
663 $form->addItem($value);
665 $lowerbound->setSize(10);
666 $lowerbound->setRequired(
true);
668 $form->addItem($lowerbound);
670 $upperbound->setSize(10);
671 $upperbound->setRequired(
true);
673 $form->addItem($upperbound);
675 if ($this->
object->getFixedTextLength() > 0) {
676 $value->setSize($this->
object->getFixedTextLength());
677 $value->setMaxLength($this->
object->getFixedTextLength());
678 $lowerbound->setSize($this->
object->getFixedTextLength());
679 $lowerbound->setMaxLength($this->
object->getFixedTextLength());
680 $upperbound->setSize($this->
object->getFixedTextLength());
681 $upperbound->setMaxLength($this->
object->getFixedTextLength());
684 $points =
new ilNumberInputGUI($this->
lng->txt(
'points'),
"gap_" . $gapCounter .
"_numeric_points");
687 $points->setRequired(
true);
689 $form->addItem($points);
700 $this->
object->saveToDb();
708 $this->
object->deleteAnswerText(
710 $this->request_data_collector->getCmdIndex(
'removegap_' . $this->gapIndex)
719 $this->
object->addGapAnswer(
721 $this->request_data_collector->getCmdIndex(
'addgap_' . $this->gapIndex) + 1,
728 bool $show_question_only =
false,
729 bool $show_inline_feedback =
false 733 $template =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_output.html",
true,
true,
"components/ILIAS/TestQuestionPool");
734 $output = $this->
object->getClozeTextForHTMLOutput();
735 foreach ($this->
object->getGaps() as $gap_index => $gap) {
736 switch ($gap->getType()) {
738 $gaptemplate =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_gap_text.html",
true,
true,
"components/ILIAS/TestQuestionPool");
740 $gap_size = $gap->getGapSize() > 0 ? $gap->getGapSize() : $this->
object->getFixedTextLength();
742 $gaptemplate->setCurrentBlock(
'size_and_maxlength');
743 $gaptemplate->setVariable(
"TEXT_GAP_SIZE", $gap_size);
744 $gaptemplate->parseCurrentBlock();
746 $gaptemplate->setVariable(
"GAP_COUNTER", $gap_index);
747 foreach ($user_solution as $val1 => $val2) {
748 if (strcmp($val1, $gap_index) == 0) {
755 $output = $this->
object->replaceFirstGap($output, $gaptemplate->get());
759 $gaptemplate =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_gap_select.html",
true,
true,
"components/ILIAS/TestQuestionPool");
760 foreach ($gap->getItems($this->object->getShuffler(), $gap_index) as $item) {
761 $gaptemplate->setCurrentBlock(
"select_gap_option");
762 $gaptemplate->setVariable(
"SELECT_GAP_VALUE", $item->getOrder());
763 $gaptemplate->setVariable(
767 foreach ($user_solution as $val1 => $val2) {
768 if (strcmp($val1, $gap_index) == 0) {
769 if (strcmp($val2, $item->getOrder()) == 0) {
770 $gaptemplate->setVariable(
"SELECT_GAP_SELECTED",
" selected=\"selected\"");
774 $gaptemplate->parseCurrentBlock();
776 $gaptemplate->setVariable(
"PLEASE_SELECT", $this->
lng->txt(
"please_select"));
777 $gaptemplate->setVariable(
"GAP_COUNTER", $gap_index);
778 $output = $this->
object->replaceFirstGap($output, $gaptemplate->get());
782 $gaptemplate =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_gap_numeric.html",
true,
true,
"components/ILIAS/TestQuestionPool");
783 $gap_size = $gap->getGapSize() > 0 ? $gap->getGapSize() : $this->
object->getFixedTextLength();
785 $gaptemplate->setCurrentBlock(
'size_and_maxlength');
786 $gaptemplate->setVariable(
"TEXT_GAP_SIZE", $gap_size);
787 $gaptemplate->parseCurrentBlock();
789 $gaptemplate->setVariable(
"GAP_COUNTER", $gap_index);
790 foreach ($user_solution as $val1 => $val2) {
791 if (strcmp($val1, $gap_index) == 0) {
798 $output = $this->
object->replaceFirstGap($output, $gaptemplate->get());
803 $template->setVariable(
"QUESTIONTEXT", $this->
object->getQuestionForHTMLOutput());
805 $questionoutput = $template->get();
806 if (!$show_question_only) {
810 return $questionoutput;
816 bool $graphical_output =
false,
817 bool $result_output =
false,
818 bool $show_question_only =
true,
819 bool $show_feedback =
false,
820 bool $show_correct_solution =
false,
821 bool $show_manual_scoring =
false,
822 bool $show_question_text =
true,
823 bool $show_inline_feedback =
true 826 if (($active_id > 0) && (!$show_correct_solution)) {
827 $user_solution = $this->
object->getSolutionValues($active_id, $pass);
828 if (!is_array($user_solution)) {
841 $show_correct_solution,
842 $show_manual_scoring,
850 mixed $user_solutions,
853 bool $graphical_output =
false,
854 bool $result_output =
false,
855 bool $show_question_only =
true,
856 bool $show_feedback =
false,
857 bool $show_correct_solution =
false,
858 bool $show_manual_scoring =
false,
859 bool $show_question_text =
true,
860 bool $show_autosave_title =
false,
861 bool $show_inline_feedback =
false,
863 $template =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_output_solution.html",
true,
true,
"components/ILIAS/TestQuestionPool");
864 $output = $this->
object->getClozeTextForHTMLOutput();
866 $check_for_gap_combinations = $assClozeGapCombinationObject->loadFromDb($this->
object->getId());
868 foreach ($this->
object->getGaps() as $gap_index => $gap) {
869 $gaptemplate =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_output_solution_gap.html",
true,
true,
"components/ILIAS/TestQuestionPool");
871 foreach ($user_solutions as $solutionarray) {
872 if ($solutionarray[
"value1"] == $gap_index) {
873 $found = $solutionarray;
878 && $graphical_output) {
880 $details = $this->
object->getUserResultDetails($active_id, $pass);
881 $check = $details[$gap_index] ?? [];
883 if (count($check_for_gap_combinations) != 0) {
884 $gaps_used_in_combination = $assClozeGapCombinationObject->getGapsWhichAreUsedInCombination($this->
object->getId());
885 $custom_user_solution = [];
886 if (array_key_exists($gap_index, $gaps_used_in_combination)) {
887 $combination_id = $gaps_used_in_combination[$gap_index];
888 foreach ($gaps_used_in_combination as $key => $value) {
890 if ($value == $combination_id) {
891 foreach ($user_solutions as $solution_key => $solution_value) {
892 if ($solution_value[
'value1'] == $key) {
894 $result_row[
'gap_id'] = $solution_value[
'value1'];
895 $result_row[
'value'] = $solution_value[
'value2'];
896 array_push($custom_user_solution, $result_row);
901 $points_array = $this->
object->calculateCombinationResult($custom_user_solution);
902 $max_combination_points = $assClozeGapCombinationObject->getMaxPointsForCombination($this->
object->getId(), $combination_id);
903 if ($points_array[0] == $max_combination_points) {
905 } elseif ($points_array[0] > 0) {
911 if (array_key_exists(
'best',
$check) &&
$check[
"best"]) {
912 $gaptemplate->setCurrentBlock(
"icon_ok");
914 $gaptemplate->parseCurrentBlock();
916 $gaptemplate->setCurrentBlock(
"icon_ok");
917 if (array_key_exists(
'positive',
$check) &&
$check[
"positive"]) {
922 $gaptemplate->parseCurrentBlock();
926 if (array_key_exists(
'best',
$check) &&
$check[
"best"]) {
927 $gaptemplate->setCurrentBlock(
"icon_ok");
929 $gaptemplate->parseCurrentBlock();
931 $gaptemplate->setCurrentBlock(
"icon_ok");
932 if (array_key_exists(
'positive',
$check) &&
$check[
"positive"]) {
937 $gaptemplate->parseCurrentBlock();
942 switch ($gap->getType()) {
946 if (($active_id > 0) && (!$show_correct_solution)) {
947 if ((count($found) == 0) || (strlen(trim($found[
"value2"])) == 0)) {
948 for ($chars = 0; $chars < $gap->getMaxWidth(); $chars++) {
949 $solutiontext .=
" ";
955 $solutiontext = $this->
getBestSolutionText($gap, $gap_index, $check_for_gap_combinations);
959 $output = $this->
object->replaceFirstGap($output, $gaptemplate->get());
964 if (($active_id > 0) && (!$show_correct_solution)) {
965 if ((count($found) == 0) || (strlen(trim($found[
"value2"])) == 0)) {
966 for ($chars = 0; $chars < $gap->getMaxWidth(); $chars++) {
967 $solutiontext .=
" ";
970 $item = $gap->getItem($found[
"value2"]);
971 if (is_object($item)) {
974 for ($chars = 0; $chars < $gap->getMaxWidth(); $chars++) {
975 $solutiontext .=
" ";
980 $solutiontext = $this->
getBestSolutionText($gap, $gap_index, $check_for_gap_combinations);
984 $output = $this->
object->replaceFirstGap($output, $gaptemplate->get());
990 if ($show_question_text) {
991 $template->setVariable(
993 $this->
object->getQuestionForHTMLOutput()
999 $solutiontemplate =
new ilTemplate(
"tpl.il_as_tst_solution_output.html",
true,
true,
"components/ILIAS/TestQuestionPool");
1000 $questionoutput = $template->get();
1003 if ($show_feedback) {
1009 $this->
object->fetchIndexedValuesFromValuePairs($user_solutions)
1012 if ($feedback !==
'') {
1018 $solutiontemplate->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
1022 $solutiontemplate->setVariable(
"SOLUTION_OUTPUT", $questionoutput);
1024 $solutionoutput = $solutiontemplate->get();
1026 if (!$show_question_only) {
1028 $solutionoutput = $this->
getILIASPage($solutionoutput);
1031 return $solutionoutput;
1042 $combination =
null;
1043 foreach ((array) $gap_combinations as $combiGapSolRow) {
1044 if ($combiGapSolRow[
'gap_fi'] == $gap_index && $combiGapSolRow[
'best_solution']) {
1045 $combination = $combiGapSolRow;
1050 $gap->getBestSolutionOutput(
1051 $this->object->getShuffler(),
1055 return $best_solution_text;
1061 if (strlen($manual_feedback)) {
1062 return $manual_feedback;
1064 $correct_feedback = $this->
object->feedbackOBJ->getGenericFeedbackTestPresentation($this->
object->getId(),
true);
1065 $incorrect_feedback = $this->
object->feedbackOBJ->getGenericFeedbackTestPresentation($this->
object->getId(),
false);
1068 if ($correct_feedback . $incorrect_feedback !==
'') {
1078 bool $is_question_postponed =
false,
1079 array|
bool $user_post_solutions =
false,
1080 bool $show_specific_inline_feedback =
false 1083 $user_solution = [];
1084 if ($user_post_solutions !==
false) {
1085 $indexedSolution = $this->
object->fetchSolutionSubmit();
1086 $user_solution = $this->
object->fetchValuePairsFromIndexedValues($indexedSolution);
1087 } elseif ($active_id) {
1088 $user_solution = $this->
object->getTestOutputSolutions($active_id, $pass);
1090 if (!is_array($user_solution)) {
1091 $user_solution = [];
1095 $template =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_output.html",
true,
true,
"components/ILIAS/TestQuestionPool");
1096 $output = $this->
object->getClozeTextForHTMLOutput();
1097 foreach ($this->
object->getGaps() as $gap_index => $gap) {
1098 switch ($gap->getType()) {
1100 $gaptemplate =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_gap_text.html",
true,
true,
"components/ILIAS/TestQuestionPool");
1101 $gap_size = $gap->getGapSize() > 0 ? $gap->getGapSize() : $this->
object->getFixedTextLength();
1103 if ($gap_size > 0) {
1104 $gaptemplate->setCurrentBlock(
'size_and_maxlength');
1105 $gaptemplate->setVariable(
"TEXT_GAP_SIZE", $gap_size);
1106 $gaptemplate->parseCurrentBlock();
1109 $gaptemplate->setVariable(
"GAP_COUNTER", $gap_index);
1110 foreach ($user_solution as $solution) {
1111 if (strcmp($solution[
"value1"], $gap_index) == 0) {
1118 $output = $this->
object->replaceFirstGap($output, $gaptemplate->get());
1122 $gaptemplate =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_gap_select.html",
true,
true,
"components/ILIAS/TestQuestionPool");
1123 foreach ($gap->getItems($this->object->getShuffler(), $gap_index) as $item) {
1124 $gaptemplate->setCurrentBlock(
"select_gap_option");
1125 $gaptemplate->setVariable(
"SELECT_GAP_VALUE", $item->getOrder());
1126 $gaptemplate->setVariable(
1130 foreach ($user_solution as $solution) {
1131 if (strcmp($solution[
"value1"], $gap_index) == 0) {
1132 if (strcmp($solution[
"value2"], $item->getOrder()) == 0) {
1133 $gaptemplate->setVariable(
"SELECT_GAP_SELECTED",
" selected=\"selected\"");
1137 $gaptemplate->parseCurrentBlock();
1139 $gaptemplate->setVariable(
"PLEASE_SELECT", $this->
lng->txt(
"please_select"));
1140 $gaptemplate->setVariable(
"GAP_COUNTER", $gap_index);
1141 $output = $this->
object->replaceFirstGap($output, $gaptemplate->get());
1145 $gaptemplate =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_gap_numeric.html",
true,
true,
"components/ILIAS/TestQuestionPool");
1146 $gap_size = $gap->getGapSize() > 0 ? $gap->getGapSize() : $this->
object->getFixedTextLength();
1147 if ($gap_size > 0) {
1148 $gaptemplate->setCurrentBlock(
'size_and_maxlength');
1149 $gaptemplate->setVariable(
"TEXT_GAP_SIZE", $gap_size);
1150 $gaptemplate->parseCurrentBlock();
1153 $gaptemplate->setVariable(
"GAP_COUNTER", $gap_index);
1154 foreach ($user_solution as $solution) {
1155 if (strcmp($solution[
"value1"], $gap_index) == 0) {
1162 $output = $this->
object->replaceFirstGap($output, $gaptemplate->get());
1168 $template->setVariable(
"QUESTIONTEXT", $this->
object->getQuestionForHTMLOutput());
1170 $questionoutput = $template->get();
1171 $pageoutput = $this->
outQuestionPage(
"", $is_question_postponed, $active_id, $questionoutput);
1177 if (!$this->
object->feedbackOBJ->isSpecificAnswerFeedbackAvailable($this->object->getId())) {
1181 $feedback =
'<table class="test_specific_feedback"><tbody>';
1183 foreach ($this->
object->gaps as $gap_index => $gap) {
1184 $answer_value = $this->
object->fetchAnswerValueForGap($user_solution, $gap_index);
1186 && $answer_value ===
'') {
1189 $answer_index = $this->
object->feedbackOBJ->determineAnswerIndexForAnswerValue($gap, $answer_value);
1190 $fb = $this->
object->feedbackOBJ->determineTestOutputGapFeedback($gap_index, $answer_index);
1192 $caption = $this->
lng->txt(
'gap') .
' ' . ($gap_index + 1) .
': ';
1193 $feedback .=
'<tr><td>';
1194 $feedback .= $caption .
'</td><td>';
1195 $feedback .= $fb .
'</td> </tr>';
1197 $feedback .=
'</tbody></table>';
1236 public function getAggregatedAnswersView(array $relevant_answers):
string 1240 foreach ($relevant_answers as $answer) {
1241 $overview[$answer[
'active_fi']][$answer[
'pass']][$answer[
'value1']] = $answer[
'value2'];
1244 foreach ($overview as $active) {
1245 foreach ($active as $answer) {
1246 foreach ($answer as $option => $value) {
1247 $aggregation[$option][$value] = $aggregation[$option][$value] + 1;
1254 foreach ($this->
object->getGaps() as $gap_index => $gap) {
1256 $html .=
'<p>Gap ' . ($i + 1) .
' - SELECT</p>';
1259 foreach ($gap->getItems($this->object->getShuffler(), $gap_index) as $gap_item) {
1260 $aggregate = $aggregation[$i];
1261 $html .=
'<li>' . $gap_item->getAnswerText() .
' - ' . ($aggregate[$j] ? $aggregate[$j] : 0) .
'</li>';
1268 $present_elements = [];
1269 foreach ($gap->getItems($this->randomGroup->shuffleArray(
new Seed\
RandomSeed())) as $item) {
1271 $present_elements[] = $item->getAnswertext();
1274 $html .=
'<p>Gap ' . ($i + 1) .
' - TEXT</p>';
1276 $aggregate = (array) $aggregation[$i];
1277 foreach ($aggregate as $answer => $count) {
1279 if (in_array($answer, $present_elements)) {
1280 $show_mover =
' style="display: none;" ';
1283 $html .=
'<li>' . $answer .
' - ' . $count
1284 .
' <button class="clone_fields_add btn btn-link" ' . $show_mover .
' data-answer="' . $answer .
'" name="add_gap_' . $i .
'_0"> 1285 <span class="sr-only"></span><span class="glyphicon glyphicon-plus"></span></button> 1292 $html .=
'<p>Gap ' . ($i + 1) .
' - NUMERIC</p>';
1295 foreach ($gap->getItems($this->object->getShuffler(), $gap_index) as $gap_item) {
1296 $aggregate = (array) $aggregation[$i];
1297 foreach ($aggregate as $answer => $count) {
1298 $html .=
'<li>' . $answer .
' - ' . $count .
'</li>';
1314 $parts = explode(
'[gap', $question_text);
1316 $question_text =
'';
1317 foreach (
$parts as $part) {
1319 $question_text .= $part;
1321 $question_text .=
'[gap ' . $i . $part;
1325 return $question_text;
1330 $parts = preg_split(
'/\[gap \d*\]/', $question_text);
1331 $question_text = implode(
'[gap]',
$parts);
1332 return $question_text;
1342 $gaptemplate->setCurrentBlock(
'gap_span');
1343 $gaptemplate->setVariable(
'SPAN_SOLUTION', $solutiontext);
1345 $gaptemplate->setCurrentBlock(
'gap_select');
1346 $gaptemplate->setVariable(
'SELECT_SOLUTION', $solutiontext);
1348 $gap_size = $gap->getGapSize() > 0 ? $gap->getGapSize() : $this->
object->getFixedTextLength();
1350 if ($gap_size > 0) {
1351 $gaptemplate->setCurrentBlock(
'gap_size');
1352 $gaptemplate->setVariable(
"GAP_SIZE", $gap_size);
1353 $gaptemplate->parseCurrentBlock();
1356 $gaptemplate->setCurrentBlock(
'gap_input');
1357 $gaptemplate->setVariable(
'INPUT_SOLUTION', $solutiontext);
1361 $gaptemplate->parseCurrentBlock();
1367 if (isset($answer[
'actions'])) {
1377 $table = parent::getAnswerFrequencyTableGUI(
1386 $this->
lng->txt(
'tst_corrections_answers_tbl_subindex'),
1387 $this->
lng->txt(
'gap') .
' ' . ($questionIndex + 1)
1392 $table->addColumn(
'',
'',
'200');
1400 return array_keys($this->
object->getGaps());
1405 $gap = $this->
object->getGap(
$gapIndex);
1407 switch ($gap->type) {
1414 $items = $gap->getItems($this->randomGroup->dontShuffle());
1415 return $items[$answer]->getAnswertext();
1421 $gap = $this->
object->getGap($gap_index);
1424 $this->isUsedInCombinations($gap_index)) {
1428 foreach ($answers as $key => $ans) {
1431 foreach ($gap->getItems($this->randomGroup->dontShuffle()) as $item) {
1432 if ($ans[
'answer'] !== $item->getAnswerText()) {
1441 $answers[$key][
'addable'] =
true;
1452 foreach ($relevantAnswers as $row) {
1453 if ($row[
'value1'] != $questionIndex) {
1457 if (!isset($answers[$row[
'value2']])) {
1460 $answers[$row[
'value2']] = [
1461 'answer' => $label,
'frequency' => 0
1465 $answers[$row[
'value2']][
'frequency']++;
1475 foreach ($this->
object->getGapCombinations() as $combination) {
1476 if ($combination[
'gap_fi'] !=
$gapIndex) {
1490 foreach ($this->
object->getGapCombinations() as
$c) {
1491 if (!isset($combinations[
$c[
'cid']])) {
1492 $combinations[$c[
'cid']] = [];
1495 if (!isset($combinations[$c[
'cid']][$c[
'row_id']])) {
1496 $combinations[$c[
'cid']][$c[
'row_id']] = [
1497 'gaps' => [],
'points' => $c[
'points'],
1501 if (!isset($combinations[$c[
'cid']][$c[
'row_id']][
'gaps'][$c[
'gap_fi']])) {
1502 $combinations[$c[
'cid']][$c[
'row_id']][
'gaps'][$c[
'gap_fi']] = [];
1505 $combinations[$c[
'cid']][$c[
'row_id']][
'gaps'][$c[
'gap_fi']] = $c[
'answer'];
1508 return $combinations;
1522 if ($this->
object->getGapCombinationsExists()) {
1532 $header->setTitle(
"Gap Combination " . ($combiIndex + 1));
1536 $inp->setValues($gapCombi);
1548 $header->setTitle($this->
lng->txt(
"gap") .
" " . (
$gapIndex + 1));
1549 $form->addItem($header);
1554 foreach ($gap->getItemsRaw() as $item) {
1564 $values->setRequired(
true);
1565 $values->setQuestionObject($this->
object);
1566 $values->setValues($gap->getItemsRaw());
1567 $form->addItem($values);
1574 $value->setSize(10);
1576 $value->setRequired(
true);
1577 $form->addItem($value);
1581 $lowerbound->setSize(10);
1582 $lowerbound->setRequired(
true);
1584 $form->addItem($lowerbound);
1588 $upperbound->setSize(10);
1589 $upperbound->setRequired(
true);
1591 $form->addItem($upperbound);
1596 $points->setSize(3);
1597 $points->setRequired(
true);
1599 $form->addItem($points);
1616 if ($this->
object->getGapCombinationsExists()) {
1636 foreach ($gap->
getItemsRaw() as $index => $item) {
1637 $item->setPoints((
float) str_replace(
',',
'.', $answers[$index]->getPoints()));
1653 $combinationPoints = [
'points' => [],
'select' => []];
1654 $combinationValues = [];
1659 if (!isset($combinationPoints[
'points'][$combiId])) {
1660 $combinationPoints[
'points'][$combiId] = [];
1661 $combinationPoints[
'select'][$combiId] = [];
1662 $combinationValues[$combiId] = [];
1665 foreach ($combi as $varId => $variant) {
1666 $combinationPoints[
'points'][$combiId][$varId] = (float) str_replace(
',',
'.', $values[$varId][
'points']);
1667 $combinationPoints[
'select'][$combiId] = array_keys($values[$varId][
'gaps']);
1668 $combinationValues[$combiId][$varId] = array_values($values[$varId][
'gaps']);
1673 $assClozeGapCombinationObject->clearGapCombinationsFromDb($this->
object->getId());
1675 $assClozeGapCombinationObject->saveGapCombinationToDb(
1680 $this->
object->setGapCombinationsExists(
true);
isTestPresentationContext()
const ADDITIONAL_CONTENT_EDITING_MODE_IPE
setAdditionalContentEditingModeFromPost()
hasCorrectSolution($activeId, $passIndex)
populateNumericGapCorrectionFormProperty($form, $item, $gapIndex, $hidePoints)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
genericFeedbackOutputBuilder(string $feedback_correct, string $feedback_incorrect, int $active_id, ?int $pass)
generateCorrectnessIconsForCorrectness(int $correctness)
getAnswersFrequency($relevantAnswers, $questionIndex)
getTestOutput(int $active_id, int $pass, bool $is_question_postponed=false, array|bool $user_post_solutions=false, bool $show_specific_inline_feedback=false)
getAfterParticipationSuppressionAnswerPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
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)
saveCorrectionsFormProperties(ilPropertyFormGUI $form)
saveGapCorrectionFormProperty(ilPropertyFormGUI $form, assClozeGap $gap, $gapIndex)
setPoints($points=0.0)
Sets the points.
addBasicQuestionFormProperties(ilPropertyFormGUI $form)
withAdditionalOnLoadCode(Closure $binder)
parseCurrentBlock(string $blockname=self::DEFAULT_BLOCK)
Parses the given block.
escapeTemplatePlaceholders(string $text)
getAnswerFrequencyTableGUI($parentGui, $parentCmd, $relevantAnswers, $questionIndex)
saveGapCombinationCorrectionFormProperties(ilPropertyFormGUI $form)
Class for cloze question gaps.
populateTextGapFormPart($form, $gap, $gapCounter)
Populates the form-part for a text gap.
populateSolutiontextToGapTpl($gaptemplate, $gap, $solutiontext)
const CSS_CLASS_FEEDBACK_CORRECT
writeQuestionSpecificPostData(ilPropertyFormGUI $form)
Extracts the question specific values from the request and applies them to the data object...
ilGlobalPageTemplate $tpl
getPreview(bool $show_question_only=false, bool $show_inline_feedback=false)
populateTaxonomyFormSection(ilPropertyFormGUI $form)
editQuestion(bool $checkonly=false, ?bool $is_save_cmd=null)
Creates an output of the edit form for the question.
getBestSolutionText($gap, $gap_index, $gap_combinations)
addQuestionFormCommandButtons(ilPropertyFormGUI $form)
getAfterParticipationSuppressionQuestionPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
populateGapCombinationCorrectionFormProperty(ilPropertyFormGUI $form, $gapCombi, $combiIndex)
getItemsRaw()
Gets the items of a cloze gap.
Cloze test question GUI representation.
writeAnswerSpecificPostData(ilPropertyFormGUI $form)
Extracts the answer specific values from the request and applies them to the data object...
populateQuestionSpecificFormPart(ilPropertyFormGUI $form)
Adds the question specific forms parts to a question property form gui.
createGaps()
Create gaps from cloze text.
writeQuestionGenericPostData()
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
hasAddAnswerAction($relevantAnswers, $questionIndex)
populateGapFormPart($form, $gapCounter)
Populates a gap form-part.
populateAnswerSpecificFormPart(ilPropertyFormGUI $form)
Adds the answer specific form parts to a question property form gui.
populateTextOrSelectGapCorrectionFormProperty($form, $gap, $gapIndex, $hidePoints)
saveTextOrSelectGapCorrectionFormProperty(ilPropertyFormGUI $form, assClozeGap $gap, $gapIndex)
hasErrorInGapCombinationPoints(array $gap_combinations)
populateGapSizeFormPart($form, $gap, $gapCounter)
const CSS_CLASS_FEEDBACK_WRONG
writePostData(bool $always=false)
{}
const JS_INSERT_GAP_CODE_AT_CARET
saveNumericGapCorrectionFormProperty(ilPropertyFormGUI $form, assAnswerCloze $item, $gapIndex)
setUpperBound(string $bound)
Sets the upper bound.
populateGapCorrectionFormProperties($form, $gap, $gapIndex, $hidePoints)
isUsedInCombinations($gapIndex)
populateNumericGapFormPart($form, $gap, $gapCounter)
Populates the form-part for a numeric gap.
populateSelectGapFormPart($form, $gap, $gapCounter)
Populates the form-part for a select gap.
saveTaxonomyAssignments()
getILIASPage(string $html="")
Returns the ILIAS Page around a question.
renderSolutionOutput(mixed $user_solutions, 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,)
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
completeAddAnswerAction($answers, $gap_index)
applyIndizesToGapText($question_text)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
getGenericFeedbackOutput(int $active_id, $pass)
setAnswertext($answertext="")
Sets the answer text.
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
setLowerBound(string $bound)
Sets the lower boind.
isRenderPurposePrintPdf()
getAddGapButtonClickClosure(string $gap_type)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$gapIndex
A temporary variable to store gap indexes of ilCtrl commands in the getCommand method.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setInlineStyle(string $a_style)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getManualFeedback(int $active_id, int $question_id, ?int $pass)
Retrieves the feedback comment for a question in a test if it is finalized.
setVariable(string $variable, $value='')
Sets the given variable to the given value.
getSpecificFeedbackOutput(array $user_solution)
removeIndizesFromGapText($question_text)
static _getUsedHTMLTags(string $a_module="")
Returns an array of all allowed HTML tags for text editing.
__construct(int $id=-1)
assClozeTestGUI constructor
getAnswerTextLabel($gapIndex, $answer)
renderEditForm(ilPropertyFormGUI $form)