47 insertGapCodeAtCaret:
function() {
48 return this.each(
function(i) {
49 var code_start =
"[gap]" 50 var code_end =
"[/gap]" 51 if (typeof tinyMCE !=
"undefined" && typeof tinyMCE.get(
'cloze_text') !=
"undefined") {
52 var ed = tinyMCE.get(
'cloze_text');
53 il.ClozeHelper.internetExplorerTinyMCECursorFix(ed);
54 ed.selection.setContent(code_start + ed.selection.getContent() + code_end);
58 if (document.selection) {
61 sel = document.selection.createRange();
62 sel.text = code_start + sel.text + code_end;
65 else if (this.selectionStart || this.selectionStart ==
'0') {
67 var startPos = this.selectionStart;
68 var endPos = this.selectionEnd;
69 var scrollTop = this.scrollTop;
70 this.value = this.value.substring(0, startPos)
72 + this.value.substring(startPos, endPos)
74 + this.value.substring(endPos, this.value.length);
76 this.scrollTop = scrollTop;
78 this.value += code_start + code_end;
106 $this->
refinery = $this->dic->refinery();
107 $this->post = $this->dic->http()->wrapper()->post();
111 $this->
object->loadFromDb(
$id);
114 $this->randomGroup = $this->
refinery->random();
119 if (preg_match(
"/^(removegap|addgap)_(\d+)$/", $cmd, $matches)) {
121 $this->gapIndex = $matches[2];
131 $hasErrors = (!$always) ? $this->
editQuestion(
true) :
false;
133 require_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
136 $this->request->raw(
'cloze_text')
139 $this->
object->setQuestion(
140 $this->request->raw(
'question')
144 $this->
object->setClozeText($cloze_text);
145 $this->
object->setTextgapRating($this->request->raw(
'textgap_rating'));
146 $this->
object->setIdenticalScoring((
bool) ($this->request->raw(
'identical_scoring') ??
false));
147 $this->
object->setFixedTextLength(($this->request->int(
'fixedTextLength') ?? 0));
158 if (!$this->post->has(
'gap')) {
162 $gaps = $this->post->retrieve(
167 if ($this->
ctrl->getCmd() !==
'createGaps') {
168 $this->
object->clearGapAnswers();
171 foreach ($gaps as $idx => $hidden) {
172 $clozetype = $this->post->retrieve(
174 $this->
refinery->kindlyTo()->string()
177 $this->
object->setGapType($idx, $clozetype);
179 switch ($clozetype) {
182 $this->
object->setGapShuffle($idx, 0);
184 if ($this->
ctrl->getCmd() !=
'createGaps') {
185 if (is_array($_POST[
'gap_' . $idx][
'answer'])) {
186 foreach ($_POST[
'gap_' . $idx][
'answer'] as $order => $value) {
187 $this->
object->addGapAnswer($idx, $order, $value);
190 $this->
object->addGapAnswer($idx, 0,
'');
194 if (is_array($_POST[
'gap_' . $idx][
'points'])) {
195 foreach ($_POST[
'gap_' . $idx][
'points'] as $order => $value) {
196 $this->
object->setGapAnswerPoints($idx, $order, $value);
200 $k_gapsize =
'gap_' . $idx .
'_gapsize';
201 if ($this->request->isset($k_gapsize)) {
202 $this->
object->setGapSize($idx, $_POST[$k_gapsize]);
208 $this->
object->setGapShuffle($idx, (
int) (isset($_POST[
"shuffle_$idx"]) && $_POST[
"shuffle_$idx"]));
210 if ($this->
ctrl->getCmd() !=
'createGaps') {
211 if (is_array($_POST[
'gap_' . $idx][
'answer'])) {
212 foreach ($_POST[
'gap_' . $idx][
'answer'] as $order => $value) {
213 $this->
object->addGapAnswer($idx, $order, $value);
216 $this->
object->addGapAnswer($idx, 0,
'');
220 if (is_array($_POST[
'gap_' . $idx][
'points'])) {
221 foreach ($_POST[
'gap_' . $idx][
'points'] as $order => $value) {
222 $this->
object->setGapAnswerPoints($idx, $order, $value);
229 $this->
object->setGapShuffle($idx, 0);
231 $gap = $this->
object->getGap($idx);
236 $this->
object->getGap($idx)->clearItems();
238 if ($this->post->has(
'gap_' . $idx .
'_numeric')) {
239 if ($this->
ctrl->getCmd() !==
'createGaps') {
240 $this->
object->addGapAnswer(
243 str_replace(
",",
".", $_POST[
'gap_' . $idx .
'_numeric'])
247 $this->
object->setGapAnswerLowerBound(
250 str_replace(
",",
".", $_POST[
'gap_' . $idx .
'_numeric_lower'])
253 $this->
object->setGapAnswerUpperBound(
256 str_replace(
",",
".", $_POST[
'gap_' . $idx .
'_numeric_upper'])
259 $this->
object->setGapAnswerPoints($idx, 0, $_POST[
'gap_' . $idx .
'_numeric_points']);
261 if ($this->
ctrl->getCmd() !=
'createGaps') {
262 $this->
object->addGapAnswer($idx, 0,
'');
265 $this->
object->setGapAnswerLowerBound($idx, 0,
'');
267 $this->
object->setGapAnswerUpperBound($idx, 0,
'');
270 if ($this->post->has(
'gap_' . $idx .
'_gapsize')) {
271 $this->
object->setGapSize($idx, $_POST[
'gap_' . $idx .
'_gapsize']);
276 $assClozeGapCombinationObject->clearGapCombinationsFromDb($this->
object->getId());
278 isset($_POST[
'gap_combination']) &&
279 is_array($_POST[
'gap_combination']) &&
280 count($_POST[
'gap_combination']) > 0
282 $assClozeGapCombinationObject->saveGapCombinationToDb(
284 $_POST[
'gap_combination'],
285 $_POST[
'gap_combination_values']
289 if ($this->
ctrl->getCmd() !=
'createGaps') {
290 $this->
object->updateClozeTextFromGaps();
296 $this->
object->setClozeText($_POST[
'cloze_text']);
297 $this->
object->setTextgapRating($_POST[
"textgap_rating"]);
298 $this->
object->setIdenticalScoring($_POST[
"identical_scoring"]);
299 $this->
object->setFixedTextLength($_POST[
"fixedTextLength"]);
312 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
314 $this->editForm = $form;
316 $form->setFormAction($this->
ctrl->getFormAction($this));
318 $form->setMultipart(
false);
319 $form->setTableWidth(
"100%");
320 $form->setId(
"assclozetest");
332 $form->setValuesByPost();
333 $errors = !$form->checkInput();
334 $form->setValuesByPost();
342 $this->tpl->setVariable(
"QUESTION_DATA", $form->getHTML());
351 $title->setMaxLength(100);
352 $title->setValue($this->
object->getTitle());
353 $title->setRequired(
true);
356 if (!$this->
object->getSelfAssessmentEditingMode()) {
359 $author->setValue($this->
object->getAuthor());
360 $author->setRequired(
true);
365 $description->setValue($this->
object->getComment());
366 $description->setRequired(
false);
372 if (trim($author) ==
"") {
375 $hi->setValue($author);
381 $lifecycle->setOptions($this->
object->getLifecycle()->getSelectOptions($this->
lng));
382 $lifecycle->setValue($this->
object->getLifecycle()->getIdentifier());
388 $question->setRequired(
true);
389 $question->setRows(10);
390 $question->setCols(80);
391 if (!$this->
object->getSelfAssessmentEditingMode()) {
393 $question->setUseRte(
true);
394 include_once
"./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
396 $question->addPlugin(
"latex");
397 $question->addButton(
"latex");
398 $question->addButton(
"pastelatex");
399 $question->setRTESupport($this->
object->getId(),
"qpl",
"assessment");
402 require_once
'Modules/TestQuestionPool/classes/questions/class.ilAssSelfAssessmentQuestionFormatter.php';
404 $question->setUseTagsForRteOnly(
false);
416 $cloze_text->setInfo($this->
lng->txt(
"close_text_hint"));
417 $cloze_text->setRows(10);
418 $cloze_text->setCols(80);
419 if (!$this->
object->getSelfAssessmentEditingMode()) {
421 $cloze_text->setUseRte(
true);
422 include_once
"./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
424 $cloze_text->addPlugin(
"latex");
425 $cloze_text->addButton(
"latex");
426 $cloze_text->addButton(
"pastelatex");
429 require_once
'Modules/TestQuestionPool/classes/questions/class.ilAssSelfAssessmentQuestionFormatter.php';
431 $cloze_text->setUseTagsForRteOnly(
false);
433 $cloze_text->setRTESupport($this->
object->getId(),
"qpl",
"assessment");
436 $tpl =
new ilTemplate(
"tpl.il_as_qpl_cloze_gap_button_code.html",
true,
true,
"Modules/TestQuestionPool");
442 $sb_text_gap->setCaption(
'text_gap');
443 $sb_text_gap->setName(
'gapbutton');
444 $sb_text_gap->setId(
'gaptrigger_text');
445 $sb_text_gap->setTarget(
'');
446 $action_button->setDefaultButton($sb_text_gap);
449 $sb_sel_gap->setCaption(
'select_gap');
450 $sb_sel_gap->setName(
'gapbutton_select');
451 $sb_sel_gap->setId(
'gaptrigger_select');
452 $sb_sel_gap->setTarget(
'');
456 $sb_num_gap->setCaption(
'numeric_gap');
457 $sb_num_gap->setName(
'gapbutton_numeric');
458 $sb_num_gap->setId(
'gaptrigger_numeric');
459 $sb_num_gap->setTarget(
'');
466 $this->tpl->addOnloadCode(self::JS_INSERT_GAP_CODE_AT_CARET);
470 if (!$this->
object->getSelfAssessmentEditingMode()) {
472 $text_options = array(
473 "ci" => $this->
lng->txt(
"cloze_textgap_case_insensitive"),
474 "cs" => $this->
lng->txt(
"cloze_textgap_case_sensitive"),
475 "l1" => sprintf($this->
lng->txt(
"cloze_textgap_levenshtein_of"),
"1"),
476 "l2" => sprintf($this->
lng->txt(
"cloze_textgap_levenshtein_of"),
"2"),
477 "l3" => sprintf($this->
lng->txt(
"cloze_textgap_levenshtein_of"),
"3"),
478 "l4" => sprintf($this->
lng->txt(
"cloze_textgap_levenshtein_of"),
"4"),
479 "l5" => sprintf($this->
lng->txt(
"cloze_textgap_levenshtein_of"),
"5")
481 $textrating->setOptions($text_options);
482 $textrating->setValue($this->
object->getTextgapRating());
486 $fixedTextLength =
new ilNumberInputGUI($this->
lng->txt(
"cloze_fixed_textlength"),
"fixedTextLength");
487 $ftl = $this->
object->getFixedTextLength();
489 $fixedTextLength->
setValue($ftl > 0 ? $ftl :
'');
490 $fixedTextLength->setMinValue(0);
491 $fixedTextLength->setSize(3);
492 $fixedTextLength->setMaxLength(6);
493 $fixedTextLength->setInfo($this->
lng->txt(
'cloze_fixed_textlength_description'));
494 $fixedTextLength->setRequired(
false);
495 $form->
addItem($fixedTextLength);
498 $identical_scoring =
new ilCheckboxInputGUI($this->
lng->txt(
"identical_scoring"),
"identical_scoring");
500 $identical_scoring->setChecked($this->
object->getIdenticalScoring());
501 $identical_scoring->setInfo($this->
lng->txt(
'identical_scoring_desc'));
502 $identical_scoring->setRequired(
false);
503 $form->
addItem($identical_scoring);
510 if (self::OLD_CLOZE_TEST_UI) {
511 for ($gapCounter = 0; $gapCounter < $this->
object->getGapCount(); $gapCounter++) {
516 require_once
'Modules/TestQuestionPool/classes/Form/class.ilClozeGapInputBuilderGUI.php';
519 $combination_exists = $assClozeGapCombinationObject->combinationExistsForQid($this->
object->getId());
520 $combinations = array();
521 if ($combination_exists) {
522 $combinations = $assClozeGapCombinationObject->loadFromDb($this->
object->getId());
527 $new_builder->setValueByArray($json);
528 $new_builder->setValueCombinationFromDb($combinations);
536 $gap = $this->
object->getGaps();
541 $translate_type = array(
'text',
'select',
'numeric');
543 foreach ($gap as $content) {
545 $value = $content->getItemsRaw();
547 for ($j = 0, $jMax = count($value); $j < $jMax; $j++) {
548 if ($content->isNumericGap()) {
550 'answer' => $value[$j]->getAnswerText(),
551 'lower' => $value[$j]->getLowerBound(),
552 'upper' => $value[$j]->getUpperBound(),
553 'points' => $value[$j]->getPoints(),
559 'points' => $value[$j]->getPoints(),
563 if ($content->isSelectGap()) {
564 $shuffle = $content->getShuffle();
568 $answers[
$i] = array(
569 'type' => $translate_type[$content->getType()] ,
571 'shuffle' => $shuffle,
572 'text_field_length' => $content->getGapSize() > 0 ? $content->getGapSize() :
'',
573 'used_in_gap_combination' =>
true);
591 $gap = $this->
object->getGap($gapCounter);
598 $header->setTitle($this->
lng->txt(
"gap") .
" " . ($gapCounter + 1));
599 $form->addItem($header);
602 $gapcounter->setValue($gapCounter);
603 $form->addItem($gapcounter);
607 0 => $this->
lng->txt(
"text_gap"),
608 1 => $this->
lng->txt(
"select_gap"),
609 2 => $this->
lng->txt(
"numeric_gap")
611 $gaptype->setOptions($options);
612 $gaptype->setValue($gap->getType());
613 $form->addItem($gaptype);
618 if (count($gap->getItemsRaw()) == 0) {
623 if (count($gap->getItemsRaw()) == 0) {
630 if (count($gap->getItemsRaw()) == 0) {
633 foreach ($gap->getItemsRaw() as $item) {
647 $gapSizeFormItem =
new ilNumberInputGUI($this->
lng->txt(
'cloze_fixed_textlength'),
"gap_" . $gapCounter .
'_gapsize');
650 $gapSizeFormItem->setMinValue(0);
651 $gapSizeFormItem->setSize(3);
652 $gapSizeFormItem->setMaxLength(6);
653 $gapSizeFormItem->setInfo($this->
lng->txt(
'cloze_gap_size_info'));
654 $gapSizeFormItem->setValue($gap->getGapSize());
655 $form->addItem($gapSizeFormItem);
674 include_once
"./Modules/TestQuestionPool/classes/class.ilAnswerWizardInputGUI.php";
675 include_once
"./Modules/TestQuestionPool/classes/class.assAnswerCloze.php";
678 $values->setQuestionObject($this->
object);
679 $values->setSingleline(
true);
680 $values->setAllowMove(
false);
682 $values->setValues($gap->getItemsRaw());
683 $form->addItem($values);
686 $shuffle =
new ilCheckboxInputGUI($this->
lng->txt(
"shuffle_answers"),
"shuffle_" . $gapCounter .
"");
688 $shuffle->setChecked($gap->getShuffle());
689 $shuffle->setRequired(
false);
690 $form->addItem($shuffle);
708 include_once
"./Modules/TestQuestionPool/classes/class.ilAnswerWizardInputGUI.php";
709 include_once
"./Modules/TestQuestionPool/classes/class.assAnswerCloze.php";
712 $values->setQuestionObject($this->
object);
713 $values->setSingleline(
true);
714 $values->setAllowMove(
false);
715 $values->setValues($gap->getItemsRaw());
716 $form->addItem($values);
718 if ($this->
object->getFixedTextLength() > 0) {
719 $values->setSize($this->
object->getFixedTextLength());
720 $values->setMaxLength($this->
object->getFixedTextLength());
740 if (!$this->
object->getSelfAssessmentEditingMode()) {
744 $lowerbound =
new ilFormulaInputGUI($this->
lng->txt(
'range_lower_limit'),
"gap_" . $gapCounter .
"_numeric_lower");
747 $upperbound =
new ilFormulaInputGUI($this->
lng->txt(
'range_upper_limit'),
"gap_" . $gapCounter .
"_numeric_upper");
750 $value =
new ilNumberInputGUI($this->
lng->txt(
'value'),
"gap_" . $gapCounter .
"_numeric");
753 $lowerbound =
new ilNumberInputGUI($this->
lng->txt(
'range_lower_limit'),
"gap_" . $gapCounter .
"_numeric_lower");
756 $upperbound =
new ilNumberInputGUI($this->
lng->txt(
'range_upper_limit'),
"gap_" . $gapCounter .
"_numeric_upper");
762 $value->setRequired(
true);
763 $form->addItem($value);
765 $lowerbound->setSize(10);
766 $lowerbound->setRequired(
true);
768 $form->addItem($lowerbound);
770 $upperbound->setSize(10);
771 $upperbound->setRequired(
true);
773 $form->addItem($upperbound);
775 if ($this->
object->getFixedTextLength() > 0) {
776 $value->setSize($this->
object->getFixedTextLength());
777 $value->setMaxLength($this->
object->getFixedTextLength());
778 $lowerbound->setSize($this->
object->getFixedTextLength());
779 $lowerbound->setMaxLength($this->
object->getFixedTextLength());
780 $upperbound->setSize($this->
object->getFixedTextLength());
781 $upperbound->setMaxLength($this->
object->getFixedTextLength());
784 $points =
new ilNumberInputGUI($this->
lng->txt(
'points'),
"gap_" . $gapCounter .
"_numeric_points");
787 $points->setRequired(
true);
789 $form->addItem($points);
799 $this->
object->saveToDb();
809 $this->
object->deleteAnswerText($this->gapIndex, key($_POST[
'cmd'][
'removegap_' . $this->gapIndex]));
819 $this->
object->addGapAnswer($this->gapIndex, key($_POST[
'cmd'][
'addgap_' . $this->gapIndex]) + 1,
"");
831 public function getPreview($show_question_only =
false, $showInlineFeedback =
false): string
836 include_once
"./Services/UICore/classes/class.ilTemplate.php";
837 $template =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_output.html",
true,
true,
"Modules/TestQuestionPool");
838 $output = $this->
object->getClozeTextForHTMLOutput();
839 foreach ($this->
object->getGaps() as $gap_index => $gap) {
840 switch ($gap->getType()) {
842 $gaptemplate =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_gap_text.html",
true,
true,
"Modules/TestQuestionPool");
844 $gap_size = $gap->getGapSize() > 0 ? $gap->getGapSize() : $this->
object->getFixedTextLength();
846 $gaptemplate->setCurrentBlock(
'size_and_maxlength');
847 $gaptemplate->setVariable(
"TEXT_GAP_SIZE", $gap_size);
848 $gaptemplate->parseCurrentBlock();
850 $gaptemplate->setVariable(
"GAP_COUNTER", $gap_index);
851 foreach ($user_solution as $val1 => $val2) {
852 if (strcmp($val1, $gap_index) == 0) {
859 $output = $this->
object->replaceFirstGap($output, $gaptemplate->get());
863 $gaptemplate =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_gap_select.html",
true,
true,
"Modules/TestQuestionPool");
864 foreach ($gap->getItems($this->object->getShuffler(), $gap_index) as $item) {
865 $gaptemplate->setCurrentBlock(
"select_gap_option");
866 $gaptemplate->setVariable(
"SELECT_GAP_VALUE", $item->getOrder());
867 $gaptemplate->setVariable(
871 foreach ($user_solution as $val1 => $val2) {
872 if (strcmp($val1, $gap_index) == 0) {
873 if (strcmp($val2, $item->getOrder()) == 0) {
874 $gaptemplate->setVariable(
"SELECT_GAP_SELECTED",
" selected=\"selected\"");
878 $gaptemplate->parseCurrentBlock();
880 $gaptemplate->setVariable(
"PLEASE_SELECT", $this->
lng->txt(
"please_select"));
881 $gaptemplate->setVariable(
"GAP_COUNTER", $gap_index);
882 $output = $this->
object->replaceFirstGap($output, $gaptemplate->get());
886 $gaptemplate =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_gap_numeric.html",
true,
true,
"Modules/TestQuestionPool");
887 $gap_size = $gap->getGapSize() > 0 ? $gap->getGapSize() : $this->
object->getFixedTextLength();
889 $gaptemplate->setCurrentBlock(
'size_and_maxlength');
890 $gaptemplate->setVariable(
"TEXT_GAP_SIZE", $gap_size);
891 $gaptemplate->parseCurrentBlock();
893 $gaptemplate->setVariable(
"GAP_COUNTER", $gap_index);
894 foreach ($user_solution as $val1 => $val2) {
895 if (strcmp($val1, $gap_index) == 0) {
902 $output = $this->
object->replaceFirstGap($output, $gaptemplate->get());
907 $template->setVariable(
"QUESTIONTEXT", $this->
object->getQuestionForHTMLOutput());
908 $template->setVariable(
"CLOZETEXT", $this->
object->prepareTextareaOutput($output,
true));
909 $questionoutput = $template->get();
910 if (!$show_question_only) {
914 return $questionoutput;
933 $graphicalOutput =
false,
934 $result_output =
false,
935 $show_question_only =
true,
936 $show_feedback =
false,
937 $show_correct_solution =
false,
938 $show_manual_scoring =
false,
939 $show_question_text =
true 942 $user_solution = array();
943 if (($active_id > 0) && (!$show_correct_solution)) {
945 $user_solution = $this->
object->getSolutionValues($active_id, $pass);
946 if (!is_array($user_solution)) {
947 $user_solution = array();
951 include_once
"./Services/UICore/classes/class.ilTemplate.php";
952 $template =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_output_solution.html",
true,
true,
"Modules/TestQuestionPool");
953 $output = $this->
object->getClozeTextForHTMLOutput();
955 $check_for_gap_combinations = $assClozeGapCombinationObject->loadFromDb($this->
object->getId());
957 foreach ($this->
object->getGaps() as $gap_index => $gap) {
958 $gaptemplate =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_output_solution_gap.html",
true,
true,
"Modules/TestQuestionPool");
960 foreach ($user_solution as $solutionarray) {
961 if ($solutionarray[
"value1"] == $gap_index) {
962 $found = $solutionarray;
967 if ($graphicalOutput) {
969 $details = $this->
object->calculateReachedPoints($active_id, $pass,
true,
true);
972 if (count($check_for_gap_combinations) != 0) {
973 $gaps_used_in_combination = $assClozeGapCombinationObject->getGapsWhichAreUsedInCombination($this->
object->getId());
974 $custom_user_solution = array();
975 if (array_key_exists($gap_index, $gaps_used_in_combination)) {
976 $combination_id = $gaps_used_in_combination[$gap_index];
977 foreach ($gaps_used_in_combination as
$key => $value) {
979 if ($value == $combination_id) {
980 foreach ($user_solution as $solution_key => $solution_value) {
981 if ($solution_value[
'value1'] ==
$key) {
982 $result_row = array();
983 $result_row[
'gap_id'] = $solution_value[
'value1'];
984 $result_row[
'value'] = $solution_value[
'value2'];
985 array_push($custom_user_solution, $result_row);
990 $points_array = $this->
object->calculateCombinationResult($custom_user_solution);
991 $max_combination_points = $assClozeGapCombinationObject->getMaxPointsForCombination($this->
object->getId(), $combination_id);
992 if ($points_array[0] == $max_combination_points) {
994 } elseif ($points_array[0] > 0) {
1000 if (array_key_exists(
'best',
$check) &&
$check[
"best"]) {
1001 $gaptemplate->setCurrentBlock(
"icon_ok");
1003 $gaptemplate->parseCurrentBlock();
1005 $gaptemplate->setCurrentBlock(
"icon_ok");
1006 if (array_key_exists(
'positive',
$check) &&
$check[
"positive"]) {
1011 $gaptemplate->parseCurrentBlock();
1015 if (array_key_exists(
'best',
$check) &&
$check[
"best"]) {
1016 $gaptemplate->setCurrentBlock(
"icon_ok");
1018 $gaptemplate->parseCurrentBlock();
1020 $gaptemplate->setCurrentBlock(
"icon_ok");
1021 if (array_key_exists(
'positive',
$check) &&
$check[
"positive"]) {
1026 $gaptemplate->parseCurrentBlock();
1031 $combination = null;
1032 switch ($gap->getType()) {
1036 if (($active_id > 0) && (!$show_correct_solution)) {
1037 if ((count($found) == 0) || (strlen(trim($found[
"value2"])) == 0)) {
1038 for ($chars = 0; $chars < $gap->getMaxWidth(); $chars++) {
1039 $solutiontext .=
" ";
1045 $solutiontext = $this->
getBestSolutionText($gap, $gap_index, $check_for_gap_combinations);
1049 $output = $this->
object->replaceFirstGap($output, $gaptemplate->get());
1054 if (($active_id > 0) && (!$show_correct_solution)) {
1055 if ((count($found) == 0) || (strlen(trim($found[
"value2"])) == 0)) {
1056 for ($chars = 0; $chars < $gap->getMaxWidth(); $chars++) {
1057 $solutiontext .=
" ";
1060 $item = $gap->getItem($found[
"value2"]);
1061 if (is_object($item)) {
1064 for ($chars = 0; $chars < $gap->getMaxWidth(); $chars++) {
1065 $solutiontext .=
" ";
1070 $solutiontext = $this->
getBestSolutionText($gap, $gap_index, $check_for_gap_combinations);
1074 $output = $this->
object->replaceFirstGap($output, $gaptemplate->get());
1080 if ($show_question_text) {
1081 $template->setVariable(
1083 $this->
object->getQuestionForHTMLOutput()
1087 $template->setVariable(
"CLOZETEXT", $this->
object->prepareTextareaOutput($output,
true));
1089 $solutiontemplate =
new ilTemplate(
"tpl.il_as_tst_solution_output.html",
true,
true,
"Modules/TestQuestionPool");
1090 $questionoutput = $template->get();
1093 if ($show_feedback) {
1096 $feedback .= strlen($fb) ? $fb :
'';
1100 $this->
object->fetchIndexedValuesFromValuePairs($user_solution)
1102 $feedback .= strlen($fb) ? $fb :
'';
1104 if (strlen($feedback)) {
1110 $solutiontemplate->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
1111 $solutiontemplate->setVariable(
"FEEDBACK", $this->
object->prepareTextareaOutput($feedback,
true));
1114 $solutiontemplate->setVariable(
"SOLUTION_OUTPUT", $questionoutput);
1116 $solutionoutput = $solutiontemplate->get();
1118 if (!$show_question_only) {
1120 $solutionoutput = $this->
getILIASPage($solutionoutput);
1123 return $solutionoutput;
1134 $combination = null;
1135 foreach ((array) $gap_combinations as $combiGapSolRow) {
1136 if ($combiGapSolRow[
'gap_fi'] == $gap_index && $combiGapSolRow[
'best_solution']) {
1137 $combination = $combiGapSolRow;
1142 $gap->getBestSolutionOutput(
1143 $this->object->getShuffler(),
1147 return $best_solution_text;
1152 include_once
"./Modules/Test/classes/class.ilObjTest.php";
1154 if (strlen($manual_feedback)) {
1155 return $manual_feedback;
1157 $correct_feedback = $this->
object->feedbackOBJ->getGenericFeedbackTestPresentation($this->
object->getId(),
true);
1158 $incorrect_feedback = $this->
object->feedbackOBJ->getGenericFeedbackTestPresentation($this->
object->getId(),
false);
1161 if ($correct_feedback . $incorrect_feedback !==
'') {
1165 return $this->
object->prepareTextareaOutput($output,
true);
1173 $is_postponed =
false,
1174 $use_post_solutions =
false,
1175 $show_feedback =
false 1178 $user_solution = array();
1179 if ($use_post_solutions !==
false) {
1180 $indexedSolution = $this->
object->fetchSolutionSubmit($use_post_solutions);
1181 $user_solution = $this->
object->fetchValuePairsFromIndexedValues($indexedSolution);
1182 } elseif ($active_id) {
1183 $user_solution = $this->
object->getTestOutputSolutions($active_id, $pass);
1185 if (!is_array($user_solution)) {
1186 $user_solution = array();
1191 include_once
"./Services/UICore/classes/class.ilTemplate.php";
1192 $template =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_output.html",
true,
true,
"Modules/TestQuestionPool");
1193 $output = $this->
object->getClozeTextForHTMLOutput();
1194 foreach ($this->
object->getGaps() as $gap_index => $gap) {
1195 switch ($gap->getType()) {
1197 $gaptemplate =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_gap_text.html",
true,
true,
"Modules/TestQuestionPool");
1198 $gap_size = $gap->getGapSize() > 0 ? $gap->getGapSize() : $this->
object->getFixedTextLength();
1200 if ($gap_size > 0) {
1201 $gaptemplate->setCurrentBlock(
'size_and_maxlength');
1202 $gaptemplate->setVariable(
"TEXT_GAP_SIZE", $gap_size);
1203 $gaptemplate->parseCurrentBlock();
1206 $gaptemplate->setVariable(
"GAP_COUNTER", $gap_index);
1207 foreach ($user_solution as $solution) {
1208 if (strcmp($solution[
"value1"], $gap_index) == 0) {
1215 $output = $this->
object->replaceFirstGap($output, $gaptemplate->get());
1219 $gaptemplate =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_gap_select.html",
true,
true,
"Modules/TestQuestionPool");
1220 foreach ($gap->getItems($this->object->getShuffler(), $gap_index) as $item) {
1221 $gaptemplate->setCurrentBlock(
"select_gap_option");
1222 $gaptemplate->setVariable(
"SELECT_GAP_VALUE", $item->getOrder());
1223 $gaptemplate->setVariable(
1227 foreach ($user_solution as $solution) {
1228 if (strcmp($solution[
"value1"], $gap_index) == 0) {
1229 if (strcmp($solution[
"value2"], $item->getOrder()) == 0) {
1230 $gaptemplate->setVariable(
"SELECT_GAP_SELECTED",
" selected=\"selected\"");
1234 $gaptemplate->parseCurrentBlock();
1236 $gaptemplate->setVariable(
"PLEASE_SELECT", $this->
lng->txt(
"please_select"));
1237 $gaptemplate->setVariable(
"GAP_COUNTER", $gap_index);
1238 $output = $this->
object->replaceFirstGap($output, $gaptemplate->get());
1242 $gaptemplate =
new ilTemplate(
"tpl.il_as_qpl_cloze_question_gap_numeric.html",
true,
true,
"Modules/TestQuestionPool");
1243 $gap_size = $gap->getGapSize() > 0 ? $gap->getGapSize() : $this->
object->getFixedTextLength();
1244 if ($gap_size > 0) {
1245 $gaptemplate->setCurrentBlock(
'size_and_maxlength');
1246 $gaptemplate->setVariable(
"TEXT_GAP_SIZE", $gap_size);
1247 $gaptemplate->parseCurrentBlock();
1250 $gaptemplate->setVariable(
"GAP_COUNTER", $gap_index);
1251 foreach ($user_solution as $solution) {
1252 if (strcmp($solution[
"value1"], $gap_index) == 0) {
1259 $output = $this->
object->replaceFirstGap($output, $gaptemplate->get());
1265 $template->setVariable(
"QUESTIONTEXT", $this->
object->getQuestionForHTMLOutput());
1266 $template->setVariable(
"CLOZETEXT", $this->
object->prepareTextareaOutput($output,
true));
1267 $questionoutput = $template->get();
1268 $pageoutput = $this->
outQuestionPage(
"", $is_postponed, $active_id, $questionoutput);
1274 if (!$this->
object->feedbackOBJ->isSpecificAnswerFeedbackAvailable($this->object->getId())) {
1278 $feedback =
'<table class="test_specific_feedback"><tbody>';
1281 $answerValue = $this->
object->fetchAnswerValueForGap($userSolution,
$gapIndex);
1283 && $answerValue ===
'') {
1286 $answerIndex = $this->
object->feedbackOBJ->determineAnswerIndexForAnswerValue($gap, $answerValue);
1287 $fb = $this->
object->feedbackOBJ->determineTestOutputGapFeedback(
$gapIndex, $answerIndex);
1289 $caption = $this->
lng->txt(
'gap') .
' ' . (
$gapIndex + 1) .
': ';
1290 $feedback .=
'<tr><td>';
1291 $feedback .= $caption .
'</td><td>';
1292 $feedback .= $fb .
'</td> </tr>';
1294 $feedback .=
'</tbody></table>';
1296 return $this->
object->prepareTextareaOutput($feedback,
true);
1335 $overview = array();
1336 $aggregation = array();
1337 foreach ($relevant_answers as $answer) {
1338 $overview[$answer[
'active_fi']][$answer[
'pass']][$answer[
'value1']] = $answer[
'value2'];
1341 foreach ($overview as $active) {
1342 foreach ($active as $answer) {
1343 foreach ($answer as $option => $value) {
1344 $aggregation[$option][$value] = $aggregation[$option][$value] + 1;
1351 foreach ($this->
object->getGaps() as $gap_index => $gap) {
1353 $html .=
'<p>Gap ' . (
$i + 1) .
' - SELECT</p>';
1356 foreach ($gap->getItems($this->object->getShuffler(), $gap_index) as $gap_item) {
1357 $aggregate = $aggregation[
$i];
1358 $html .=
'<li>' . $gap_item->getAnswerText() .
' - ' . ($aggregate[$j] ? $aggregate[$j] : 0) .
'</li>';
1365 $present_elements = array();
1366 foreach ($gap->getItems($this->randomGroup->shuffleArray(
new Seed\
RandomSeed())) as $item) {
1368 $present_elements[] = $item->getAnswertext();
1371 $html .=
'<p>Gap ' . (
$i + 1) .
' - TEXT</p>';
1373 $aggregate = (array) $aggregation[
$i];
1374 foreach ($aggregate as $answer => $count) {
1376 if (in_array($answer, $present_elements)) {
1377 $show_mover =
' style="display: none;" ';
1380 $html .=
'<li>' . $answer .
' - ' . $count
1381 .
' <button class="clone_fields_add btn btn-link" ' . $show_mover .
' data-answer="' . $answer .
'" name="add_gap_' .
$i .
'_0"> 1382 <span class="sr-only"></span><span class="glyphicon glyphicon-plus"></span></button> 1389 $html .=
'<p>Gap ' . (
$i + 1) .
' - NUMERIC</p>';
1392 foreach ($gap->getItems($this->object->getShuffler(), $gap_index) as $gap_item) {
1393 $aggregate = (array) $aggregation[
$i];
1394 foreach ($aggregate as $answer => $count) {
1395 $html .=
'<li>' . $answer .
' - ' . $count .
'</li>';
1411 $parts = explode(
'[gap', $question_text);
1413 $question_text =
'';
1414 foreach (
$parts as $part) {
1416 $question_text .= $part;
1418 $question_text .=
'[gap ' .
$i . $part;
1422 return $question_text;
1427 $parts = preg_split(
'/\[gap \d*\]/', $question_text);
1428 $question_text = implode(
'[gap]',
$parts);
1429 return $question_text;
1439 $gaptemplate->setCurrentBlock(
'gap_span');
1440 $gaptemplate->setVariable(
'SPAN_SOLUTION', $solutiontext);
1442 $gaptemplate->setCurrentBlock(
'gap_select');
1443 $gaptemplate->setVariable(
'SELECT_SOLUTION', $solutiontext);
1445 $gap_size = $gap->getGapSize() > 0 ? $gap->getGapSize() : $this->
object->getFixedTextLength();
1447 if ($gap_size > 0) {
1448 $gaptemplate->setCurrentBlock(
'gap_size');
1449 $gaptemplate->setVariable(
"GAP_SIZE", $gap_size);
1450 $gaptemplate->parseCurrentBlock();
1453 $gaptemplate->setCurrentBlock(
'gap_input');
1454 $gaptemplate->setVariable(
'INPUT_SOLUTION', $solutiontext);
1458 $gaptemplate->parseCurrentBlock();
1464 if (isset($answer[
'actions'])) {
1474 $table = parent::getAnswerFrequencyTableGUI(
1483 $this->
lng->txt(
'tst_corrections_answers_tbl_subindex'),
1484 $this->
lng->txt(
'gap') .
' ' . ($questionIndex + 1)
1489 $table->addColumn(
'',
'',
'200');
1497 return array_keys($this->
object->getGaps());
1502 $gap = $this->
object->getGap(
$gapIndex);
1504 switch ($gap->type) {
1511 $items = $gap->getItems($this->randomGroup->dontShuffle());
1512 return $items[$answer]->getAnswertext();
1518 $gap = $this->
object->getGap($gap_index);
1521 $this->isUsedInCombinations($gap_index)) {
1525 foreach ($answers as
$key => $ans) {
1528 foreach ($gap->getItems($this->randomGroup->dontShuffle()) as $item) {
1529 if ($ans[
'answer'] !== $item->getAnswerText()) {
1538 $answers[
$key][
'addable'] =
true;
1549 foreach ($relevantAnswers as $row) {
1550 if ($row[
'value1'] != $questionIndex) {
1554 if (!isset($answers[$row[
'value2']])) {
1557 $answers[$row[
'value2']] = array(
1558 'answer' => $label,
'frequency' => 0
1562 $answers[$row[
'value2']][
'frequency']++;
1572 foreach ($this->
object->getGapCombinations() as $combination) {
1573 if ($combination[
'gap_fi'] !=
$gapIndex) {
1585 $combinations = array();
1587 foreach ($this->
object->getGapCombinations() as
$c) {
1588 if (!isset($combinations[
$c[
'cid']])) {
1589 $combinations[$c[
'cid']] = array();
1592 if (!isset($combinations[$c[
'cid']][$c[
'row_id']])) {
1593 $combinations[$c[
'cid']][$c[
'row_id']] = array(
1594 'gaps' => array(),
'points' => $c[
'points'],
1598 if (!isset($combinations[$c[
'cid']][$c[
'row_id']][
'gaps'][$c[
'gap_fi']])) {
1599 $combinations[$c[
'cid']][$c[
'row_id']][
'gaps'][$c[
'gap_fi']] = array();
1602 $combinations[$c[
'cid']][$c[
'row_id']][
'gaps'][$c[
'gap_fi']] = $c[
'answer'];
1605 return $combinations;
1619 if ($this->
object->getGapCombinationsExists()) {
1629 $header->setTitle(
"Gap Combination " . ($combiIndex + 1));
1632 require_once
'Modules/TestQuestionPool/classes/forms/class.ilAssClozeTestCombinationVariantsInputGUI.php';
1634 $inp->setValues($gapCombi);
1646 $header->setTitle($this->
lng->txt(
"gap") .
" " . (
$gapIndex + 1));
1647 $form->addItem($header);
1652 foreach ($gap->getItemsRaw() as $item) {
1660 require_once
"Modules/TestQuestionPool/classes/forms/class.ilAssAnswerCorrectionsInputGUI.php";
1663 $values->setRequired(
true);
1664 $values->setQuestionObject($this->
object);
1665 $values->setValues($gap->getItemsRaw());
1666 $form->addItem($values);
1673 $value->setSize(10);
1675 $value->setRequired(
true);
1676 $form->addItem($value);
1680 $lowerbound->setSize(10);
1681 $lowerbound->setRequired(
true);
1683 $form->addItem($lowerbound);
1687 $upperbound->setSize(10);
1688 $upperbound->setRequired(
true);
1690 $form->addItem($upperbound);
1695 $points->setSize(3);
1696 $points->setRequired(
true);
1698 $form->addItem($points);
1715 if ($this->
object->getGapCombinationsExists()) {
1736 $item->setPoints((
float) str_replace(
',',
'.', $answers[$index]->getPoints()));
1752 $combinationPoints = array(
'points' => array(),
'select' => array());
1753 $combinationValues = array();
1758 if (!isset($combinationPoints[
'points'][$combiId])) {
1759 $combinationPoints[
'points'][$combiId] = array();
1760 $combinationPoints[
'select'][$combiId] = array();
1761 $combinationValues[$combiId] = array();
1764 foreach ($combi as $varId => $variant) {
1765 $combinationPoints[
'points'][$combiId][$varId] = (float) str_replace(
',',
'.', $values[$varId][
'points']);
1766 $combinationPoints[
'select'][$combiId] = array_keys($values[$varId][
'gaps']);
1767 $combinationValues[$combiId][$varId] = array_values($values[$varId][
'gaps']);
1771 $combinationPoints = $combinationPoints;
1772 $combinationValues = $combinationValues;
1775 $assClozeGapCombinationObject->clearGapCombinationsFromDb($this->
object->getId());
1777 $assClozeGapCombinationObject->saveGapCombinationToDb(
isTestPresentationContext()
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)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getAfterParticipationSuppressionAnswerPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
getAggregatedAnswersView(array $relevant_answers)
Returns an html string containing a question specific representation of the answers so far given in t...
const CLOZE_TEXT
Cloze question constants.
saveCorrectionsFormProperties(ilPropertyFormGUI $form)
saveGapCorrectionFormProperty(ilPropertyFormGUI $form, assClozeGap $gap, $gapIndex)
setPoints($points=0.0)
Sets the points.
getTestOutput( $active_id, $pass, $is_postponed=false, $use_post_solutions=false, $show_feedback=false)
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 $_POST and applies them to the data object.
ilGlobalPageTemplate $tpl
populateTaxonomyFormSection(ilPropertyFormGUI $form)
getSpecificFeedbackOutput(array $userSolution)
Customizing of pimple-DIC for ILIAS.
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...
setValue(string $a_value)
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 $_POST 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.
static getManualFeedback($active_id, $question_id, $pass)
Retrieves the feedback comment for a question in a test if it is finalized.
populateTextOrSelectGapCorrectionFormProperty($form, $gap, $gapIndex, $hidePoints)
saveTextOrSelectGapCorrectionFormProperty(ilPropertyFormGUI $form, assClozeGap $gap, $gapIndex)
populateGapSizeFormPart($form, $gap, $gapCounter)
const CSS_CLASS_FEEDBACK_WRONG
writePostData(bool $always=false)
{}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const JS_INSERT_GAP_CODE_AT_CARET
saveNumericGapCorrectionFormProperty(ilPropertyFormGUI $form, assAnswerCloze $item, $gapIndex)
setUpperBound(string $bound)
Sets the upper bound.
removegap()
Remove a gap answer.
populateGapCorrectionFormProperties($form, $gap, $gapIndex, $hidePoints)
addgap()
Add a gap answer.
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.
getSolutionOutput( $active_id, $pass=null, $graphicalOutput=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.
saveTaxonomyAssignments()
getILIASPage(string $html="")
Returns the ILIAS Page around a question.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
completeAddAnswerAction($answers, $gap_index)
applyIndizesToGapText($question_text)
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
getGenericFeedbackOutput(int $active_id, $pass)
const ADDITIONAL_CONTENT_EDITING_MODE_RTE
setAnswertext($answertext="")
Sets the answer text.
addBasicQuestionFormProperties(ilPropertyFormGUI $form)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
setLowerBound(string $bound)
Sets the lower boind.
isRenderPurposePrintPdf()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addNumberOfTriesToFormIfNecessary(ilPropertyFormGUI $form)
$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...
getPreview($show_question_only=false, $showInlineFeedback=false)
Creates a preview output of the question.
setVariable(string $variable, $value='')
Sets the given variable to the given value.
editQuestion($checkonly=false)
Creates an output of the edit form for the question.
removeIndizesFromGapText($question_text)
static _getUsedHTMLTags(string $a_module="")
Returns an array of all allowed HTML tags for text editing.
ArrayBasedRequestWrapper $post
__construct(int $id=-1)
assClozeTestGUI constructor
getAnswerTextLabel($gapIndex, $answer)