19 require_once
'./Modules/Test/classes/inc.AssessmentConstants.php';
47 include_once
"./Modules/TestQuestionPool/classes/class.assSingleChoice.php";
50 $this->
object->loadFromDb(
$id);
59 return $this->
object->feedbackOBJ->isSpecificAnswerFeedbackAvailable($this->
object->getId());
67 $hasErrors = (!$always) ? $this->
editQuestion(
true) :
false;
69 require_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
88 if ($this->
object->getSelfAssessmentEditingMode()) {
89 return $this->
object->isSingleline();
93 $types = $_POST[
'types'] ??
'0';
94 return $types ===
'0' ? true :
false;
97 $lastChange = $this->
object->getLastChange();
98 if (empty($lastChange) && !isset($_POST[
'types'])) {
100 return $this->
object->getMultilineAnswerSetting() ? false :
true;
103 return $this->
object->isSingleline();
116 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
118 $this->editForm = $form;
120 $form->setFormAction($this->
ctrl->getFormAction($this));
123 if ($is_singleline) {
124 $form->setMultipart(
true);
126 $form->setMultipart(
false);
128 $form->setTableWidth(
"100%");
129 $form->setId(
"asssinglechoice");
143 foreach ($this->request->getParsedBody() as
$key => $value) {
144 $item = $form->getItemByPostVar($key);
145 if ($item !== null) {
146 switch (get_class($item)) {
147 case 'ilDurationInputGUI':
148 $item->setHours($value[
'hh']);
149 $item->setMinutes($value[
'mm']);
150 $item->setSeconds($value[
'ss']);
153 $item->setValue($value);
158 $errors = !$form->checkInput();
159 foreach ($this->request->getParsedBody() as $key => $value) {
160 $item = $form->getItemByPostVar($key);
161 if ($item !== null) {
162 switch (get_class($item)) {
163 case 'ilDurationInputGUI':
164 $item->setHours($value[
'hh']);
165 $item->setMinutes($value[
'mm']);
166 $item->setSeconds($value[
'ss']);
169 $item->setValue($value);
180 $this->tpl->setVariable(
"QUESTION_DATA", $form->getHTML());
191 $position = key($_POST[
'cmd'][
'uploadchoice']);
201 $position = key($_POST[
'cmd'][
'removeimagechoice']);
202 $filename = $_POST[
'choice'][
'imagename'][$position];
203 $this->
object->removeAnswerImage($position);
213 $position = key($_POST[
'cmd'][
'addchoice']);
214 $this->
object->addAnswer(
"", 0, $position + 1);
224 $position = key($_POST[
'cmd'][
'removechoice']);
225 $this->
object->deleteAnswer($position);
244 $graphicalOutput =
false,
245 $result_output =
false,
246 $show_question_only =
true,
247 $show_feedback =
false,
248 $show_correct_solution =
false,
249 $show_manual_scoring =
false,
250 $show_question_text =
true 257 if (($active_id > 0) && (!$show_correct_solution)) {
258 $solutions = $this->
object->getSolutionValues($active_id, $pass);
259 foreach ($solutions as $idx => $solution_value) {
260 $user_solution = $solution_value[
"value1"];
266 if ($answer->getPoints() > $max_points) {
267 $max_points = $answer->getPoints();
271 $user_solution = $found_index;
274 include_once
"./Services/UICore/classes/class.ilTemplate.php";
275 $template =
new ilTemplate(
"tpl.il_as_qpl_mc_sr_output_solution.html",
true,
true,
"Modules/TestQuestionPool");
276 $solutiontemplate =
new ilTemplate(
"tpl.il_as_tst_solution_output.html",
true,
true,
"Modules/TestQuestionPool");
277 foreach (
$keys as $answer_id) {
278 $answer = $this->
object->answers[$answer_id];
279 if (($active_id > 0) && (!$show_correct_solution)) {
280 if ($graphicalOutput) {
283 if (strcmp($user_solution, $answer_id) == 0) {
284 if ($answer->getPoints() == $this->
object->getMaximumPoints()) {
286 } elseif ($answer->getPoints() > 0) {
290 $template->setCurrentBlock(
"icon_ok");
291 $template->setVariable(
"ICON_OK", $correctness_icon);
292 $template->parseCurrentBlock();
295 if (strlen($answer->getImage())) {
296 $template->setCurrentBlock(
"answer_image");
297 if ($this->
object->getThumbSize()) {
298 $template->setVariable(
"ANSWER_IMAGE_URL", $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $answer->getImage());
300 $template->setVariable(
"ANSWER_IMAGE_URL", $this->
object->getImagePathWeb() . $answer->getImage());
302 $alt = $answer->getImage();
303 if (strlen($answer->getAnswertext())) {
304 $alt = $answer->getAnswertext();
306 $alt = preg_replace(
"/<[^>]*?>/",
"", $alt);
309 $template->parseCurrentBlock();
311 if ($show_feedback) {
314 $template->setCurrentBlock(
"answer_row");
315 $template->setVariable(
"ANSWER_TEXT", $this->
object->prepareTextareaOutput($answer->getAnswertext(),
true));
318 if (strcmp($user_solution, $answer_id) == 0) {
320 $template->setVariable(
"SOLUTION_ALT", $this->
lng->txt(
"checked"));
323 $template->setVariable(
"SOLUTION_ALT", $this->
lng->txt(
"unchecked"));
326 $template->setVariable(
'QID', $this->
object->getId());
327 $template->setVariable(
'SUFFIX', $show_correct_solution ?
'bestsolution' :
'usersolution');
328 $template->setVariable(
'SOLUTION_VALUE', $answer_id);
329 if (strcmp($user_solution, $answer_id) == 0) {
330 $template->setVariable(
'SOLUTION_CHECKED',
'checked');
334 if ($result_output) {
335 $points = $this->
object->answers[$answer_id]->getPoints();
336 $resulttext = ($points == 1) ?
"(%s " . $this->
lng->txt(
"point") .
")" :
"(%s " . $this->
lng->txt(
"points") .
")";
337 $template->setVariable(
"RESULT_OUTPUT", sprintf($resulttext, $points));
339 $template->parseCurrentBlock();
341 $questiontext = $this->
object->getQuestionForHTMLOutput();
345 if ($show_question_text ==
true) {
346 $template->setVariable(
"QUESTIONTEXT", $this->
object->prepareTextareaOutput($questiontext,
true));
348 $questionoutput = $template->get();
350 if (strlen($feedback)) {
356 $solutiontemplate->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
357 $solutiontemplate->setVariable(
"FEEDBACK", $this->
object->prepareTextareaOutput($feedback,
true));
359 $solutiontemplate->setVariable(
"SOLUTION_OUTPUT", $questionoutput);
361 $solutionoutput = $solutiontemplate->get();
363 if (!$show_question_only) {
367 return $solutionoutput;
370 public function getPreview($show_question_only =
false, $showInlineFeedback =
false): string
375 include_once
"./Services/UICore/classes/class.ilTemplate.php";
376 $template =
new ilTemplate(
"tpl.il_as_qpl_mc_sr_output.html",
true,
true,
"Modules/TestQuestionPool");
377 foreach (
$keys as $answer_id) {
378 $answer = $this->
object->answers[$answer_id];
379 if (strlen($answer->getImage())) {
380 if ($this->
object->getThumbSize()) {
381 $template->setCurrentBlock(
"preview");
382 $template->setVariable(
"URL_PREVIEW", $this->
object->getImagePathWeb() . $answer->getImage());
383 $template->setVariable(
"TEXT_PREVIEW", $this->
lng->txt(
'preview'));
385 $template->setVariable(
"ANSWER_IMAGE_URL", $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $answer->getImage());
386 list($width, $height,
$type, $attr) = getimagesize($this->
object->getImagePath() . $answer->getImage());
387 $alt = $answer->getImage();
388 if (strlen($answer->getAnswertext())) {
389 $alt = $answer->getAnswertext();
391 $alt = preg_replace(
"/<[^>]*?>/",
"", $alt);
394 $template->parseCurrentBlock();
396 $template->setCurrentBlock(
"answer_image");
397 $template->setVariable(
"ANSWER_IMAGE_URL", $this->
object->getImagePathWeb() . $answer->getImage());
398 list($width, $height,
$type, $attr) = getimagesize($this->
object->getImagePath() . $answer->getImage());
399 $alt = $answer->getImage();
400 if (strlen($answer->getAnswertext())) {
401 $alt = $answer->getAnswertext();
403 $alt = preg_replace(
"/<[^>]*?>/",
"", $alt);
404 $template->setVariable(
"ATTR", $attr);
407 $template->parseCurrentBlock();
413 $template->setCurrentBlock(
"answer_row");
414 $template->setVariable(
"QID", $this->
object->getId() .
'ID');
415 $template->setVariable(
"ANSWER_ID", $answer_id);
416 $template->setVariable(
"ANSWER_TEXT", $this->
object->prepareTextareaOutput($answer->getAnswertext(),
true));
420 if (strcmp($user_solution, $answer_id) == 0) {
421 $template->setVariable(
"CHECKED_ANSWER",
" checked=\"checked\"");
425 $template->parseCurrentBlock();
427 $questiontext = $this->
object->getQuestionForHTMLOutput();
431 $template->setVariable(
"QUESTIONTEXT", $this->
object->prepareTextareaOutput($questiontext,
true));
432 $questionoutput = $template->get();
433 if (!$show_question_only) {
437 return $questionoutput;
441 public function getTestOutput($active_id, $pass, $is_postponed =
false, $use_post_solutions =
false, $show_feedback =
false): string
449 $solutions = $this->
object->getTestOutputSolutions($active_id, $pass);
450 foreach ($solutions as $idx => $solution_value) {
451 $user_solution = $solution_value[
"value1"];
456 include_once
"./Services/UICore/classes/class.ilTemplate.php";
457 $template =
new ilTemplate(
"tpl.il_as_qpl_mc_sr_output.html",
true,
true,
"Modules/TestQuestionPool");
458 foreach (
$keys as $answer_id) {
459 $answer = $this->
object->answers[$answer_id];
460 if (strlen($answer->getImage())) {
461 if ($this->
object->getThumbSize()) {
462 $template->setCurrentBlock(
"preview");
463 $template->setVariable(
"URL_PREVIEW", $this->
object->getImagePathWeb() . $answer->getImage());
464 $template->setVariable(
"TEXT_PREVIEW", $this->
lng->txt(
'preview'));
466 $template->setVariable(
"ANSWER_IMAGE_URL", $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $answer->getImage());
467 list($width, $height,
$type, $attr) = getimagesize($this->
object->getImagePath() . $answer->getImage());
468 $alt = $answer->getImage();
469 if (strlen($answer->getAnswertext())) {
470 $alt = $answer->getAnswertext();
472 $alt = preg_replace(
"/<[^>]*?>/",
"", $alt);
475 $template->parseCurrentBlock();
477 $template->setCurrentBlock(
"answer_image");
478 $template->setVariable(
"ANSWER_IMAGE_URL", $this->
object->getImagePathWeb() . $answer->getImage());
479 list($width, $height,
$type, $attr) = getimagesize($this->
object->getImagePath() . $answer->getImage());
480 $alt = $answer->getImage();
481 if (strlen($answer->getAnswertext())) {
482 $alt = $answer->getAnswertext();
484 $alt = preg_replace(
"/<[^>]*?>/",
"", $alt);
485 $template->setVariable(
"ATTR", $attr);
488 $template->parseCurrentBlock();
491 if ($show_feedback) {
492 $feedbackOutputRequired =
false;
494 switch ($this->
object->getSpecificFeedbackSetting()) {
496 $feedbackOutputRequired =
true;
500 if (strcmp($user_solution, $answer_id) == 0) {
501 $feedbackOutputRequired =
true;
506 if ($this->
object->getAnswer($answer_id)->getPoints() > 0) {
507 $feedbackOutputRequired =
true;
512 if ($feedbackOutputRequired) {
513 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
519 $template->setCurrentBlock(
"feedback");
520 $template->setVariable(
"FEEDBACK", $this->
object->prepareTextareaOutput($fb,
true));
521 $template->parseCurrentBlock();
525 $template->setCurrentBlock(
"answer_row");
526 $template->setVariable(
"ANSWER_ID", $answer_id);
527 $template->setVariable(
"ANSWER_TEXT", $this->
object->prepareTextareaOutput($answer->getAnswertext(),
true));
528 if (strcmp($user_solution, $answer_id) == 0) {
529 $template->setVariable(
"CHECKED_ANSWER",
" checked=\"checked\"");
531 $template->parseCurrentBlock();
533 $template->setVariable(
"QUESTIONTEXT", $this->
object->getQuestionForHTMLOutput());
534 $questionoutput = $template->get();
535 $pageoutput = $this->
outQuestionPage(
"", $is_postponed, $active_id, $questionoutput, $show_feedback);
546 $choiceKeys = array_keys($this->
object->answers);
548 if ($this->
object->getShuffle()) {
549 $choiceKeys = $this->
object->getShuffler()->transform($choiceKeys);
559 return $this->
object->prepareTextareaOutput($output,
true);
564 $types = $_POST[
"types"] ??
'0';
566 $this->
object->setShuffle($_POST[
"shuffle"] ??
'0');
567 $this->
object->setMultilineAnswerSetting($types);
569 if (isset($_POST[
'choice']) && isset($_POST[
'choice'][
'imagename']) && is_array($_POST[
'choice'][
'imagename']) && $types ===
'1') {
570 $this->
object->setIsSingleline(
true);
571 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'info_answer_type_change'),
true);
573 $this->
object->setIsSingleline($types ===
'0' ?
true :
false);
575 if (isset($_POST[
"thumb_size"])) {
576 $this->
object->setThumbSize((
int) $_POST[
"thumb_size"]);
585 $shuffle->setChecked($this->
object->getShuffle());
586 $shuffle->setRequired(
false);
589 if ($this->
object->getId()) {
591 $hidden->setValue($this->
object->getId());
595 if (!$this->
object->getSelfAssessmentEditingMode()) {
598 $types->setRequired(
false);
599 $types->setValue(($is_singleline) ? 0 : 1);
602 0 => $this->
lng->txt(
'answers_singleline'),
603 1 => $this->
lng->txt(
'answers_multiline'),
609 if ($is_singleline) {
612 $thumb_size->
setSuffix($this->
lng->txt(
"thumb_size_unit_pixel"));
613 $thumb_size->setMinValue($this->
object->getMinimumThumbSize());
614 $thumb_size->setMaxValue($this->
object->getMaximumThumbSize());
615 $thumb_size->setDecimals(0);
616 $thumb_size->setSize(6);
617 $thumb_size->setInfo($this->
lng->txt(
'thumb_size_info'));
618 $thumb_size->setValue($this->
object->getThumbSize());
619 $thumb_size->setRequired(
true);
622 $thumb_size->setValue($this->
object->getThumbSize());
646 $this->
object->flushAnswers();
648 if ($this->
object->isSingleline()) {
649 foreach ($choice[
'answer'] as
$index => $answertext) {
650 $answertext = htmlentities($answertext);
651 $picturefile = $choice[
'imagename'][
$index] ??
'';
652 $file_org_name = $_FILES[
'choice'][
'name'][
'image'][
$index] ??
'';
653 $file_temp_name = $_FILES[
'choice'][
'tmp_name'][
'image'][
$index] ??
'';
655 if ($file_temp_name !==
'') {
657 $file_name_parts = explode(
".", $file_org_name);
658 $suffix = strtolower(array_pop($file_name_parts));
659 if (in_array($suffix, array(
"jpg",
"jpeg",
"png",
"gif"))) {
661 $filename = $this->
object->buildHashedImageFilename($file_org_name);
667 $points = (float) str_replace(
',',
'.', $choice[
'points'][
$index]);
668 $this->
object->addAnswer(
673 $choice[
'answer_id'][$index]
677 foreach ($choice[
'answer'] as
$index => $answer) {
678 $answertext = $answer;
679 $this->
object->addAnswer(
681 $choice[
'points'][
$index],
684 $choice[
'answer_id'][$index]
694 $choices->setQuestionObject($this->
object);
695 $choices->setSingleline($is_singleline);
696 $choices->setAllowMove(
false);
697 if ($this->
object->getSelfAssessmentEditingMode()) {
698 $choices->setSize(40);
700 if ($this->
object->getAnswerCount() == 0) {
701 $this->
object->addAnswer(
"", 0, 0);
703 $choices->setValues(array_map(
705 $value->setAnswerText(html_entity_decode($value->getAnswerText()));
708 $this->
object->getAnswers()
741 public function aggregateAnswers($relevant_answers_chosen, $answers_defined_on_question): array
743 $aggregate = array();
744 foreach ($answers_defined_on_question as $answer) {
745 $aggregated_info_for_answer = array();
746 $aggregated_info_for_answer[
'answertext'] = $answer->getAnswerText();
747 $aggregated_info_for_answer[
'count_checked'] = 0;
749 foreach ($relevant_answers_chosen as $relevant_answer) {
750 if ($relevant_answer[
'value1'] == $answer->getOrder()) {
751 $aggregated_info_for_answer[
'count_checked']++;
754 $aggregated_info_for_answer[
'count_unchecked'] =
755 ceil(count($relevant_answers_chosen) / count($answers_defined_on_question))
756 - $aggregated_info_for_answer[
'count_checked'];
758 $aggregate[] = $aggregated_info_for_answer;
770 $tpl =
new ilTemplate(
'tpl.il_as_aggregated_answers_table.html',
true,
true,
"Modules/TestQuestionPool");
780 foreach ($aggregate as $line_data) {
791 $feedbackOutputRequired =
false;
793 switch ($this->
object->getSpecificFeedbackSetting()) {
795 $feedbackOutputRequired =
true;
799 if (strcmp($user_solution, $answer_id) == 0) {
800 $feedbackOutputRequired =
true;
805 if ($this->
object->getAnswer($answer_id)->getPoints() > 0) {
806 $feedbackOutputRequired =
true;
811 if ($feedbackOutputRequired) {
812 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation($this->
object->getId(), 0, $answer_id);
814 $template->setCurrentBlock(
"feedback");
815 $template->setVariable(
"FEEDBACK", $this->
object->prepareTextareaOutput($fb,
true));
816 $template->parseCurrentBlock();
827 foreach ($agg as $ans) {
829 'answer' => $ans[
'answertext'],
830 'frequency' => $ans[
'count_checked']
839 require_once
'Modules/TestQuestionPool/classes/forms/class.ilAssSingleChoiceCorrectionsInputGUI.php';
842 $choices->setQuestionObject($this->
object);
843 $choices->setValues($this->
object->getAnswers());
853 $values = $input->getValues();
855 foreach ($this->
object->getAnswers() as
$index => $answer) {
857 $points = (float) str_replace(
',',
'.', $values[$index]->getPoints());
858 $answer->setPoints($points);
isTestPresentationContext()
hasCorrectSolution($activeId, $passIndex)
populateQuestionSpecificFormPart(\ilPropertyFormGUI $form, bool $is_singleline=false)
generateCorrectnessIconsForCorrectness(int $correctness)
aggregateAnswers($relevant_answers_chosen, $answers_defined_on_question)
setCurrentBlock(string $blockname=self::DEFAULT_BLOCK)
Sets the template to the given block.
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.
writeAnswerSpecificPostData(ilPropertyFormGUI $form)
Extracts the answer specific values from $_POST and applies them to the data object.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
populateInlineFeedback($template, $answer_id, $user_solution)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
addBasicQuestionFormProperties(ilPropertyFormGUI $form)
renderAggregateView($aggregate)
parseCurrentBlock(string $blockname=self::DEFAULT_BLOCK)
Parses the given block.
const CSS_CLASS_FEEDBACK_CORRECT
ilGlobalPageTemplate $tpl
getAnswersFrequency($relevantAnswers, $questionIndex)
populateTaxonomyFormSection(ilPropertyFormGUI $form)
addQuestionFormCommandButtons(ilPropertyFormGUI $form)
getSpecificFeedbackOutput(array $userSolution)
getTestOutput($active_id, $pass, $is_postponed=false, $use_post_solutions=false, $show_feedback=false)
writeQuestionGenericPostData()
getPreview($show_question_only=false, $showInlineFeedback=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...
writePostData(bool $always=false)
{}
getAfterParticipationSuppressionQuestionPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
populateAnswerSpecificFormPart(\ilPropertyFormGUI $form, bool $is_singleline=false)
removechoice()
Remove an answer.
static getHtmlPath(string $relative_path)
get url of path
const CSS_CLASS_FEEDBACK_WRONG
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
saveTaxonomyAssignments()
addchoice()
Add a new answer.
getILIASPage(string $html="")
Returns the ILIAS Page around a question.
saveCorrectionsFormProperties(ilPropertyFormGUI $form)
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
__construct(Container $dic, ilPlugin $plugin)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct($id=-1)
assSingleChoiceGUI constructor
editQuestion($checkonly=false)
Creates an output of the edit form for the question.
removeimagechoice()
Remove an image.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getAggregatedAnswersView(array $relevant_answers)
Returns an html string containing a question specific representation of the answers so far given in t...
getEditAnswersSingleLine($checkonly=false)
Get the single/multiline editing of answers.
setVariable(string $variable, $value='')
Sets the given variable to the given value.
uploadchoice()
Upload an image.
writeQuestionSpecificPostData(ilPropertyFormGUI $form)
Extracts the question specific values from $_POST and applies them to the data object.
renderPurposeSupportsFormHtml()
getGenericFeedbackOutput(int $active_id, ?int $pass)