50 $this->
object->loadFromDb(
$id);
59 return $this->
object->feedbackOBJ->isSpecificAnswerFeedbackAvailable($this->
object->getId());
67 $hasErrors = (!$always) ? $this->
editQuestion(
true) :
false;
71 $form->setValuesByPost();
90 if ($this->
object->getSelfAssessmentEditingMode()) {
91 return $this->
object->isSingleline();
95 return $this->request_data_collector->int(
'types') === 0;
98 if (empty($this->
object->getLastChange())
99 && !$this->request_data_collector->isset(
'types')) {
101 return $this->
object->getMultilineAnswerSetting() === 0;
104 return $this->
object->isSingleline();
108 bool $checkonly =
false,
109 ?
bool $is_save_cmd =
null 117 if ($is_singleline) {
118 $form->setMultipart(
true);
120 $form->setMultipart(
false);
126 $form->getItemByPostVar(
'selection_limit')->setMaxValue(count($this->request_data_collector->raw(
'choice')[
'answer'] ?? []));
128 $form->setValuesByPost();
129 $errors = !$this->checkMaxPointsNotNegative($form) || !$form->checkInput();
148 $answers = $choice->getValues();
149 $total_max_points = 0;
151 foreach ($answers as $answer) {
152 $total_max_points += max($answer->getPointsChecked(), $answer->getPointsUnchecked());
155 if ($total_max_points < 0) {
156 $choice->setAlert($this->
lng->txt(
'total_max_points_cannot_be_negative'));
165 parent::addBasicQuestionFormProperties($form);
180 $this->
object->removeAnswerImage($this->request_data_collector->getCmdIndex(
'removeimagechoice'));
187 $position = $this->request_data_collector->getCmdIndex(
'addchoice');
188 $this->
object->addAnswer(
"", 0, $position + 1);
195 $this->
object->deleteAnswer($this->request_data_collector->getCmdIndex(
'removechoice'));
202 bool $graphical_output =
false,
203 bool $result_output =
false,
204 bool $show_question_only =
true,
205 bool $show_feedback =
false,
206 bool $show_correct_solution =
false,
207 bool $show_manual_scoring =
false,
208 bool $show_question_text =
true,
209 bool $show_inline_feedback =
true 211 if ($active_id > 0 && !$show_correct_solution) {
212 $user_solution = $this->
object->getSolutionValues($active_id, $pass);
215 foreach ($this->
object->answers as $index => $answer) {
216 $points_checked = $answer->getPointsChecked();
217 $points_unchecked = $answer->getPointsUnchecked();
218 if ($points_checked > $points_unchecked && $points_checked > 0) {
219 $user_solution[] = [
'value1' => $index];
232 $show_correct_solution,
233 $show_manual_scoring,
236 $show_inline_feedback,
241 mixed $user_solutions,
244 bool $graphical_output =
false,
245 bool $result_output =
false,
246 bool $show_question_only =
true,
247 bool $show_feedback =
false,
248 bool $show_correct_solution =
false,
249 bool $show_manual_scoring =
false,
250 bool $show_question_text =
true,
251 bool $show_autosave_title =
false,
252 bool $show_inline_feedback =
false,
256 foreach ($user_solutions as $idx => $solution_value) {
257 array_push($user_solution, $solution_value[
"value1"]);
260 $template =
new ilTemplate(
"tpl.il_as_qpl_mc_mr_output_solution.html",
true,
true,
"components/ILIAS/TestQuestionPool");
261 $solutiontemplate =
new ilTemplate(
"tpl.il_as_tst_solution_output.html",
true,
true,
"components/ILIAS/TestQuestionPool");
263 foreach ($keys as $answer_id) {
264 $answer = $this->
object->answers[$answer_id];
265 if (($active_id > 0) && (!$show_correct_solution)) {
266 if ($graphical_output) {
270 foreach ($user_solution as $mc_solution) {
271 if (strcmp($mc_solution, $answer_id) == 0) {
276 if ($answer->getPointsChecked() > $answer->getPointsUnchecked()) {
277 $ok = self::CORRECTNESS_OK;
279 $ok = self::CORRECTNESS_NOT_OK;
282 if ($answer->getPointsChecked() > $answer->getPointsUnchecked()) {
283 $ok = self::CORRECTNESS_NOT_OK;
285 $ok = self::CORRECTNESS_OK;
289 $template->setCurrentBlock(
"icon_ok");
290 $template->setVariable(
"ICON_OK", $icon);
291 $template->parseCurrentBlock();
294 if ($answer->hasImage()) {
295 $template->setCurrentBlock(
"answer_image");
296 if ($this->
object->getThumbSize()) {
297 $template->setVariable(
"ANSWER_IMAGE_URL", $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $answer->getImage());
299 $template->setVariable(
"ANSWER_IMAGE_URL", $this->
object->getImagePathWeb() . $answer->getImage());
301 $alt = $answer->getImage();
302 if (strlen($answer->getAnswertext())) {
303 $alt = $answer->getAnswertext();
305 $alt = preg_replace(
"/<[^>]*?>/",
"", $alt);
308 $template->parseCurrentBlock();
313 if ($this->
object->getSpecificFeedbackSetting() == 2) {
314 foreach ($user_solution as $mc_solution) {
315 if (strcmp($mc_solution, $answer_id) == 0) {
316 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
322 $template->setCurrentBlock(
"feedback");
324 $template->parseCurrentBlock();
330 if ($this->
object->getSpecificFeedbackSetting() == 1) {
331 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
337 $template->setCurrentBlock(
"feedback");
339 $template->parseCurrentBlock();
343 if ($show_feedback) {
344 if ($this->
object->getSpecificFeedbackSetting() == 3) {
345 $answer = $this->
object->getAnswer($answer_id);
347 if ($answer->getPoints() > 0) {
348 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
354 $template->setCurrentBlock(
"feedback");
356 $template->parseCurrentBlock();
364 $template->setCurrentBlock(
"answer_row");
367 if ($result_output) {
368 $pointschecked = $this->
object->answers[$answer_id]->getPointsChecked();
369 $pointsunchecked = $this->
object->answers[$answer_id]->getPointsUnchecked();
370 $resulttextchecked = ($pointschecked == 1) || ($pointschecked == -1) ?
"%s " . $this->
lng->txt(
"point") :
"%s " . $this->
lng->txt(
"points");
371 $resulttextunchecked = ($pointsunchecked == 1) || ($pointsunchecked == -1) ?
"%s " . $this->
lng->txt(
"point") :
"%s " . $this->
lng->txt(
"points");
372 $template->setVariable(
"RESULT_OUTPUT", sprintf(
"(" . $this->
lng->txt(
"checkbox_checked") .
" = $resulttextchecked, " . $this->
lng->txt(
"checkbox_unchecked") .
" = $resulttextunchecked)", $pointschecked, $pointsunchecked));
374 foreach ($user_solution as $mc_solution) {
375 if (strcmp($mc_solution, $answer_id) == 0) {
378 $template->setVariable(
"SOLUTION_ALT", $this->
lng->txt(
"checked"));
380 $template->setVariable(
'QID', $this->
object->getId());
381 $template->setVariable(
'SUFFIX', $show_correct_solution ?
'bestsolution' :
'usersolution');
382 $template->setVariable(
'SOLUTION_VALUE', $answer_id);
383 $template->setVariable(
'SOLUTION_CHECKED',
'checked');
391 $template->setVariable(
"SOLUTION_ALT", $this->
lng->txt(
"unchecked"));
393 $template->setVariable(
'QID', $this->
object->getId());
394 $template->setVariable(
'SUFFIX', $show_correct_solution ?
'bestsolution' :
'usersolution');
395 $template->setVariable(
'SOLUTION_VALUE', $answer_id);
398 $template->parseCurrentBlock();
400 $questiontext = $this->
object->getQuestionForHTMLOutput();
404 if ($show_question_text ==
true) {
407 $questionoutput = $template->get();
410 if (strlen($feedback)) {
416 $solutiontemplate->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
419 $solutiontemplate->setVariable(
"SOLUTION_OUTPUT", $questionoutput);
421 $solutionoutput = $solutiontemplate->get();
423 if (!$show_question_only) {
427 return $solutionoutput;
431 bool $show_question_only =
false,
432 bool $show_inline_feedback =
false 438 $this->tpl->addOnLoadCode(
'ilAssMultipleChoiceCharCounterInit();');
439 $template =
new ilTemplate(
"tpl.il_as_qpl_mc_mr_output.html",
true,
true,
"components/ILIAS/TestQuestionPool");
440 foreach ($keys as $answer_id) {
441 $answer = $this->
object->answers[$answer_id];
442 if ($answer->hasImage()) {
443 if ($this->
object->getThumbSize()) {
444 $template->setCurrentBlock(
"preview");
445 $template->setVariable(
"URL_PREVIEW", $this->
object->getImagePathWeb() . $answer->getImage());
446 $template->setVariable(
"TEXT_PREVIEW", $this->
lng->txt(
'preview'));
448 $template->setVariable(
"ANSWER_IMAGE_URL", $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $answer->getImage());
449 list($width, $height, $type, $attr) = getimagesize($this->
object->getImagePath() . $answer->getImage());
450 $alt = $answer->getImage();
451 if (strlen($answer->getAnswertext())) {
452 $alt = $answer->getAnswertext();
454 $alt = preg_replace(
"/<[^>]*?>/",
"", $alt);
457 $template->parseCurrentBlock();
459 $template->setCurrentBlock(
"answer_image");
460 $template->setVariable(
"ANSWER_IMAGE_URL", $this->
object->getImagePathWeb() . $answer->getImage());
461 list($width, $height, $type, $attr) = getimagesize($this->
object->getImagePath() . $answer->getImage());
462 $alt = $answer->getImage();
463 if (strlen($answer->getAnswertext())) {
464 $alt = $answer->getAnswertext();
466 $alt = preg_replace(
"/<[^>]*?>/",
"", $alt);
467 $template->setVariable(
"ATTR", $attr);
470 $template->parseCurrentBlock();
474 if ($show_inline_feedback) {
478 $template->setCurrentBlock(
"answer_row");
479 $template->setVariable(
"QID", $this->
object->getId());
480 $template->setVariable(
"ANSWER_ID", $answer_id);
482 foreach ($user_solution as $mc_solution) {
483 if (strcmp($mc_solution, $answer_id) == 0) {
484 $template->setVariable(
"CHECKED_ANSWER",
" checked=\"checked\"");
487 $template->parseCurrentBlock();
489 if ($this->
object->getSelectionLimit()) {
490 $template->setVariable(
'SELECTION_LIMIT_HINT', sprintf(
491 $this->
lng->txt(
'ass_mc_sel_lim_hint'),
492 $this->
object->getSelectionLimit(),
493 $this->
object->getAnswerCount()
496 $template->setVariable(
'SELECTION_LIMIT_VALUE', $this->
object->getSelectionLimit());
498 $template->setVariable(
'SELECTION_LIMIT_VALUE',
'null');
500 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
501 $questiontext = $this->
object->getQuestionForHTMLOutput();
506 $questionoutput = $template->get();
507 if (!$show_question_only) {
511 return $questionoutput;
517 bool $is_question_postponed =
false,
518 array|
bool $user_post_solutions =
false,
519 bool $show_specific_inline_feedback =
false 527 $solutions = $this->
object->getTestOutputSolutions($active_id, $pass);
529 foreach ($solutions as $solution_value) {
531 if ($solution_value[
"value1"] ==
'mc_none_above') {
536 $user_solution[] = $solution_value[
"value1"];
540 if (empty($user_solution) && $this->
object->getTestPresentationConfig()->isWorkedThrough()) {
545 $this->tpl->addJavaScript(
'assets/js/ilAssMultipleChoice.js');
546 $this->tpl->addOnLoadCode(
'ilAssMultipleChoiceCharCounterInit();');
548 $template =
new ilTemplate(
"tpl.il_as_qpl_mc_mr_output.html",
true,
true,
"components/ILIAS/TestQuestionPool");
549 foreach ($keys as $answer_id) {
550 $answer = $this->
object->answers[$answer_id];
551 if ($answer->hasImage()) {
552 if ($this->
object->getThumbSize()) {
553 $template->setCurrentBlock(
"preview");
554 $template->setVariable(
"URL_PREVIEW", $this->
object->getImagePathWeb() . $answer->getImage());
555 $template->setVariable(
"TEXT_PREVIEW", $this->
lng->txt(
'preview'));
557 $template->setVariable(
"ANSWER_IMAGE_URL", $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $answer->getImage());
558 list($width, $height, $type, $attr) = getimagesize($this->
object->getImagePath() . $answer->getImage());
559 $alt = $answer->getImage();
560 if (strlen($answer->getAnswertext())) {
561 $alt = $answer->getAnswertext();
563 $alt = preg_replace(
"/<[^>]*?>/",
"", $alt);
566 $template->parseCurrentBlock();
568 $template->setCurrentBlock(
"answer_image");
569 $template->setVariable(
"ANSWER_IMAGE_URL", $this->
object->getImagePathWeb() . $answer->getImage());
570 list($width, $height, $type, $attr) = getimagesize($this->
object->getImagePath() . $answer->getImage());
571 $alt = $answer->getImage();
572 if (strlen($answer->getAnswertext())) {
573 $alt = $answer->getAnswertext();
575 $alt = preg_replace(
"/<[^>]*?>/",
"", $alt);
576 $template->setVariable(
"ATTR", $attr);
579 $template->parseCurrentBlock();
583 if ($show_specific_inline_feedback) {
587 $template->setCurrentBlock(
"answer_row");
588 $template->setVariable(
"QID", $this->
object->getId());
589 $template->setVariable(
"ANSWER_ID", $answer_id);
591 foreach ($user_solution as $mc_solution) {
592 if (strcmp($mc_solution, $answer_id) == 0) {
593 $template->setVariable(
"CHECKED_ANSWER",
" checked=\"checked\"");
596 $template->parseCurrentBlock();
599 $template->setVariable(
"QUESTIONTEXT", $this->
object->getQuestionForHTMLOutput());
600 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
601 if ($this->
object->getSelectionLimit()) {
602 $template->setVariable(
'SELECTION_LIMIT_HINT', sprintf(
603 $this->
lng->txt(
'ass_mc_sel_lim_hint'),
604 $this->
object->getSelectionLimit(),
605 $this->
object->getAnswerCount()
608 $template->setVariable(
'SELECTION_LIMIT_VALUE', $this->
object->getSelectionLimit());
610 $template->setVariable(
'SELECTION_LIMIT_VALUE',
'null');
612 $questionoutput = $template->get();
613 $pageoutput = $this->
outQuestionPage(
"", $is_question_postponed, $active_id, $questionoutput, $show_specific_inline_feedback);
632 $this->tpl->addJavaScript(
'assets/js/ilAssMultipleChoice.js');
634 $tpl =
new ilTemplate(
'tpl.tst_question_additional_behaviour_checkbox.html',
true,
true,
'components/ILIAS/TestQuestionPool');
646 $tpl->
setVariable(
'TXT_FORCE_FORM_DIFF_LABEL', $this->
object->getTestPresentationConfig()->getUseUnchangedAnswerLabel());
654 return [
'assets/js/ilAssMultipleChoice.js'];
664 $choice_keys = array_keys($this->
object->answers);
666 if ($this->
object->getShuffle()) {
667 $choice_keys = $this->
object->getShuffler()->transform($choice_keys);
682 $this->
object->setShuffle($this->request_data_collector->bool(
'shuffle') ??
false);
685 $this->
object->setSelectionLimit($selectionLimit > 0 ? $selectionLimit :
null);
687 $feedback_setting = $this->request_data_collector->int(
'feedback_setting');
688 if ($feedback_setting !== 0) {
689 $this->
object->setSpecificFeedbackSetting($feedback_setting);
692 $types = $this->request_data_collector->int(
'types');
693 $this->
object->setMultilineAnswerSetting($types);
695 $choice = $this->request_data_collector->raw(
'choice');
696 if (isset($choice[
'imagename']) && is_array($choice[
'imagename']) && $types === 1) {
697 $this->
object->setIsSingleline(
true);
698 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'info_answer_type_change'),
true);
700 $this->
object->setIsSingleline($types === 0);
703 $thumb_size = $this->request_data_collector->int(
'thumb_size') ?? $this->
object->getThumbSize();
704 if ($thumb_size !== $this->
object->getThumbSize()) {
705 $this->
object->setThumbSize($thumb_size);
706 $this->rebuild_thumbnails =
true;
713 $this->
object->flushAnswers();
716 $this->request_data_collector->raw(
'choice'),
717 !$this->
object->isSingleline()
720 if (!$this->
object->isSingleline()) {
721 foreach ($choice[
'answer'] as $index => $answer) {
722 $answertext = $answer;
723 $this->
object->addAnswer(
725 (
float) str_replace(
',',
'.', $choice[
'points'][$index]),
726 (
float) str_replace(
',',
'.', $choice[
'points_unchecked'][$index]),
729 (
int) $choice[
'answer_id'][$index]
735 foreach ($choice[
'answer'] as $index => $answertext) {
736 $answertext = htmlentities($answertext);
737 $picturefile = $choice[
'imagename'][$index] ??
null;
738 $file_org_name = $_FILES[
'choice'][
'name'][
'image'][$index] ??
'';
739 $file_temp_name = $_FILES[
'choice'][
'tmp_name'][
'image'][$index] ??
'';
741 if ($file_temp_name !==
'') {
743 $parts = explode(
'.', $file_org_name);
744 $suffix = strtolower(array_pop(
$parts));
745 if (in_array($suffix, [
'jpg',
'jpeg',
'png',
'gif'])) {
747 $filename = $this->
object->buildHashedImageFilename($file_org_name);
754 $this->
object->addAnswer(
756 (
float) str_replace(
',',
'.', $choice[
'points'][$index]),
757 (
float) str_replace(
',',
'.', $choice[
'points_unchecked'][$index]),
760 $choice[
'answer_id'][$index]
764 if ($this->rebuild_thumbnails) {
765 $this->
object->setAnswers(
766 $this->
object->rebuildThumbnails(
767 $this->object->isSingleline(),
768 $this->
object->getThumbSize(),
769 $this->
object->getImagePath(),
770 $this->
object->getAnswers()
780 $shuffle->setValue(1);
781 $shuffle->setChecked($this->
object->getShuffle());
782 $shuffle->setRequired(
false);
785 $selLim =
new ilNumberInputGUI($this->
lng->txt(
'ass_mc_sel_lim_setting'),
'selection_limit');
786 $selLim->
setInfo($this->
lng->txt(
'ass_mc_sel_lim_setting_desc'));
788 $selLim->setRequired(
false);
789 $selLim->allowDecimals(
false);
790 $selLim->setMinvalueShouldBeGreater(
false);
791 $selLim->setMaxvalueShouldBeLess(
false);
792 $selLim->setMinValue(1);
793 $selLim->setMaxValue($this->
object->getAnswerCount());
794 $selLim->setValue($this->
object->getSelectionLimit());
797 if (!$this->
object->getSelfAssessmentEditingMode()) {
802 0 => $this->
lng->txt(
'answers_singleline'),
803 1 => $this->
lng->txt(
'answers_multiline'),
805 $types->setValue($is_singleline ? 0 : 1);
809 if ($is_singleline) {
812 $thumb_size->
setSuffix($this->
lng->txt(
'thumb_size_unit_pixel'));
813 $thumb_size->setMinValue($this->
object->getMinimumThumbSize());
814 $thumb_size->setMaxValue($this->
object->getMaximumThumbSize());
815 $thumb_size->setDecimals(0);
816 $thumb_size->setSize(6);
817 $thumb_size->setInfo($this->
lng->txt(
'thumb_size_info'));
818 $thumb_size->setValue($this->
object->getThumbSize());
819 $thumb_size->setRequired(
true);
822 $thumb_size->setValue($this->
object->getThumbSize());
833 $choices->setQuestionObject($this->
object);
834 $choices->setSingleline($is_singleline);
835 $choices->setAllowMove(
false);
836 if ($this->
object->getSelfAssessmentEditingMode()) {
837 $choices->setSize(40);
839 if ($this->
object->getAnswerCount() == 0) {
840 $this->
object->addAnswer(
"", 0, 0, 0);
844 $value->setAnswerText(html_entity_decode($value->getAnswerText()));
847 $this->
object->getAnswers()
881 private function aggregateAnswers($relevant_answers_chosen, $answers_defined_on_question): array
884 foreach ($answers_defined_on_question as $answer) {
885 $aggregated_info_for_answer = [];
886 $aggregated_info_for_answer[
'answertext'] = $answer->getAnswerText();
887 $aggregated_info_for_answer[
'count_checked'] = 0;
889 foreach ($relevant_answers_chosen as $relevant_answer) {
890 if ($relevant_answer[
'value1'] == $answer->getOrder()) {
891 $aggregated_info_for_answer[
'count_checked']++;
894 $aggregated_info_for_answer[
'count_unchecked'] =
895 ceil(count($relevant_answers_chosen) / count($answers_defined_on_question))
896 - $aggregated_info_for_answer[
'count_checked'];
898 $aggregate[] = $aggregated_info_for_answer;
905 if ($this->
object->getSpecificFeedbackSetting() == 2) {
906 foreach ($user_solution as $mc_solution) {
907 if (strcmp($mc_solution, $answer_id) == 0) {
908 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation($this->
object->getId(), 0, $answer_id);
910 $template->setCurrentBlock(
"feedback");
912 $template->parseCurrentBlock();
918 if ($this->
object->getSpecificFeedbackSetting() == 1) {
919 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation($this->
object->getId(), 0, $answer_id);
921 $template->setCurrentBlock(
"feedback");
923 $template->parseCurrentBlock();
927 if ($this->
object->getSpecificFeedbackSetting() == 3) {
928 $answer = $this->
object->getAnswer($answer_id);
930 if ($answer->getPoints() > 0) {
931 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation($this->
object->getId(), 0, $answer_id);
933 $template->setCurrentBlock(
"feedback");
935 $template->parseCurrentBlock();
954 $form->
setId(
"assmultiplechoice");
970 foreach ($agg as $ans) {
972 'answer' => $ans[
'answertext'],
973 'frequency' => $ans[
'count_checked']
984 $choices->setQuestionObject($this->
object);
985 $choices->setValues($this->
object->getAnswers());
995 $answerElements = $input->getValues();
997 foreach ($this->
object->getAnswers() as $index => $answer) {
999 $answer->setPointsChecked((
float) str_replace(
',',
'.', $answerElements[$index]->getPointsChecked()));
1000 $answer->setPointsUnchecked((
float) str_replace(
',',
'.', $answerElements[$index]->getPointsUnchecked()));
isTestPresentationContext()
setAdditionalContentEditingModeFromPost()
hasCorrectSolution($activeId, $passIndex)
generateCorrectnessIconsForCorrectness(int $correctness)
setCurrentBlock(string $blockname=self::DEFAULT_BLOCK)
Sets the template to the given block.
getAnswersFrequency($relevantAnswers, $questionIndex)
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
setUseEmptySolutionInputChecked($useEmptySolutionInputChecked)
getAfterParticipationSuppressionAnswerPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
getChoiceKeys()
Create the key index numbers for the array of choices.
ASS_AnswerBinaryStateImage is a class for answers with a binary state indicator (checked/unchecked, set/unset) and an image file.
populateQuestionSpecificFormPart(\ilPropertyFormGUI $form, bool $is_singleline=false)
populateAnswerSpecificFormPart(\ilPropertyFormGUI $form, bool $is_singleline=false)
parseCurrentBlock(string $blockname=self::DEFAULT_BLOCK)
Parses the given block.
saveCorrectionsFormProperties(ilPropertyFormGUI $form)
const CSS_CLASS_FEEDBACK_CORRECT
ilGlobalPageTemplate $tpl
Class for multiple choice tests.
populateTaxonomyFormSection(ilPropertyFormGUI $form)
addQuestionFormCommandButtons(ilPropertyFormGUI $form)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
writeQuestionGenericPostData()
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
getUseUnchangedAnswerCheckboxHtml()
writeAnswerSpecificPostData(ilPropertyFormGUI $form)
Extracts the answer specific values from the request and applies them to the data object...
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static getHtmlPath(string $relative_path)
get url of path
writeQuestionSpecificPostData(ilPropertyFormGUI $form)
Extracts the question specific values from the request and applies them to the data object...
const CSS_CLASS_FEEDBACK_WRONG
aggregateAnswers($relevant_answers_chosen, $answers_defined_on_question)
editQuestion(bool $checkonly=false, ?bool $is_save_cmd=null)
getPresentationJavascripts()
getAfterParticipationSuppressionQuestionPostVars()
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...
isUseEmptySolutionInputChecked()
touchBlock(string $blockname)
overwrites ITX::touchBlock.
getEditAnswersSingleLine($checkonly=false)
Get the single/multiline editing of answers.
__construct($id=-1)
assMultipleChoiceGUI constructor
saveTaxonomyAssignments()
writePostData(bool $always=false)
{}
$useEmptySolutionInputChecked
getILIASPage(string $html="")
Returns the ILIAS Page around a question.
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
cleanupAnswerText(array $answer_text, bool $is_rte)
sk - 12.05.2023: This is one more of those that we need, but don't want.
isRenderPurposePrintPdf()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getPreview(bool $show_question_only=false, bool $show_inline_feedback=false)
buildEditForm(bool $is_singleline=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTestOutput(int $active_id, int $pass, bool $is_question_postponed=false, array|bool $user_post_solutions=false, bool $show_specific_inline_feedback=false)
getSpecificFeedbackOutput(array $userSolution)
populateSpecificFeedbackInline($user_solution, $answer_id, $template)
setVariable(string $variable, $value='')
Sets the given variable to the given value.
addBasicQuestionFormProperties(ilPropertyFormGUI $form)
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,)
renderEditForm(ilPropertyFormGUI $form)
renderPurposeSupportsFormHtml()
getGenericFeedbackOutput(int $active_id, ?int $pass)
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)