4 require_once
'./Modules/TestQuestionPool/classes/class.assQuestionGUI.php';
5 require_once
'./Modules/TestQuestionPool/interfaces/interface.ilGuiQuestionScoringAdjustable.php';
6 require_once
'./Modules/TestQuestionPool/interfaces/interface.ilGuiAnswerScoringAdjustable.php';
7 include_once
'./Modules/Test/classes/inc.AssessmentConstants.php';
8 require_once
'Services/WebAccessChecker/classes/class.ilWACSignedPath.php';
40 include_once
'./Modules/TestQuestionPool/classes/class.assImagemapQuestion.php';
43 $this->
object->loadFromDb($id);
45 $assessmentSetting =
new ilSetting(
"assessment");
46 $this->linecolor = (strlen($assessmentSetting->get(
"imap_line_color"))) ?
"#" . $assessmentSetting->get(
"imap_line_color") :
"#FF0000";
51 if (isset(
$_POST[
"imagemap"]) ||
52 isset(
$_POST[
"imagemap_x"]) ||
53 isset(
$_POST[
"imagemap_y"])) {
54 $this->ctrl->setCmd(
"getCoords");
63 $this->
object->deleteImage();
64 $this->
object->saveToDb();
65 ilUtil::sendSuccess($this->lng->txt(
'saved_successfully'),
true);
66 $this->ctrl->redirect($this,
'editQuestion');
75 $form->setValuesByPost();
77 if (!$always && !$form->checkInput()) {
92 if ($this->ctrl->getCmd() !=
'deleteImage') {
93 $this->
object->flushAnswers();
94 if (is_array(
$_POST[
'image'][
'coords'][
'name'])) {
95 foreach (
$_POST[
'image'][
'coords'][
'name'] as $idx =>
$name) {
96 if ($this->object->getIsMultipleChoice() && isset(
$_POST[
'image'][
'coords'][
'points_unchecked'])) {
97 $pointsUnchecked =
$_POST[
'image'][
'coords'][
'points_unchecked'][$idx];
99 $pointsUnchecked = 0.0;
102 $this->
object->addAnswer(
104 $_POST[
'image'][
'coords'][
'points'][$idx],
106 $_POST[
'image'][
'coords'][
'coords'][$idx],
107 $_POST[
'image'][
'coords'][
'shape'][$idx],
113 if (strlen($_FILES[
'imagemapfile'][
'tmp_name'])) {
114 if ($this->object->getSelfAssessmentEditingMode() && $this->
object->getId() < 1) {
115 $this->
object->createNewQuestion();
118 $this->
object->uploadImagemap($form->
getItemByPostVar(
'imagemapfile')->getShapes());
125 if ($this->ctrl->getCmd() !=
'deleteImage') {
126 if (strlen($_FILES[
'image'][
'tmp_name']) == 0) {
127 $this->
object->setImageFilename(
$_POST[
"image_name"]);
130 if (strlen($_FILES[
'image'][
'tmp_name'])) {
131 if ($this->object->getSelfAssessmentEditingMode() && $this->
object->getId() < 1) {
132 $this->
object->createNewQuestion();
134 $this->
object->setImageFilename($_FILES[
'image'][
'name'], $_FILES[
'image'][
'tmp_name']);
161 if (null === $form) {
166 $this->tpl->addCss(
'Modules/Test/templates/default/ta.css');
168 $this->tpl->setVariable(
'QUESTION_DATA', $this->ctrl->getHTML($form));
180 $radioGroup =
new ilRadioGroupInputGUI($this->lng->txt(
'tst_imap_qst_mode'),
'is_multiple_choice');
181 $radioGroup->
setValue($this->object->getIsMultipleChoice());
183 $this->lng->txt(
'tst_imap_qst_mode_sc'),
187 $this->lng->txt(
'tst_imap_qst_mode_mc'),
190 $radioGroup->addOption($modeSingleChoice);
191 $radioGroup->addOption($modeMultipleChoice);
194 require_once
'Modules/TestQuestionPool/classes/forms/class.ilImagemapFileInputGUI.php';
197 $image->setRequired(
true);
199 if (strlen($this->object->getImageFilename())) {
200 $image->setImage($this->object->getImagePathWeb() . $this->
object->getImageFilename());
201 $image->setValue($this->object->getImageFilename());
202 $image->setAreas($this->object->getAnswers());
203 $assessmentSetting =
new ilSetting(
"assessment");
205 $assessmentSetting->get(
"imap_line_color")
206 )) ?
"\"#" . $assessmentSetting->get(
"imap_line_color") .
"\"" :
"\"#FF0000\"";
208 $image->setImagePath($this->object->getImagePath());
209 $image->setImagePathWeb($this->object->getImagePathWeb());
213 require_once
'Modules/TestQuestionPool/classes/forms/class.ilHtmlImageMapFileInputGUI.php';
241 switch (
$_POST[
"shape"]) {
243 $coords = join(
",",
$_POST[
'image'][
'mapcoords']);
244 ilUtil::sendSuccess($this->lng->txt(
'msg_rect_added'),
true);
247 if (preg_match(
"/(\d+)\s*,\s*(\d+)\s+(\d+)\s*,\s*(\d+)/",
$_POST[
'image'][
'mapcoords'][0] .
" " .
$_POST[
'image'][
'mapcoords'][1], $matches)) {
248 $coords =
"$matches[1],$matches[2]," . (int) sqrt((($matches[3] - $matches[1]) * ($matches[3] - $matches[1])) + (($matches[4] - $matches[2]) * ($matches[4] - $matches[2])));
250 ilUtil::sendSuccess($this->lng->txt(
'msg_circle_added'),
true);
253 $coords = join(
",", $_POST[
'image'][
'mapcoords']);
254 ilUtil::sendSuccess($this->lng->txt(
'msg_poly_added'),
true);
257 $this->
object->addAnswer(
$_POST[
"shapetitle"], 0, count($this->object->getAnswers()), $coords,
$_POST[
"shape"]);
258 $this->
object->saveToDb();
259 $this->ctrl->redirect($this,
'editQuestion');
264 $shape = (strlen($shape)) ? $shape :
$_POST[
'shape'];
268 $editorTpl =
new ilTemplate(
'tpl.il_as_qpl_imagemap_question.html',
true,
true,
'Modules/TestQuestionPool');
271 if (is_array(
$_POST[
'image'][
'mapcoords'])) {
272 foreach (
$_POST[
'image'][
'mapcoords'] as $value) {
273 array_push($coords, $value);
276 if (is_array(
$_POST[
'cmd'][
'areaEditor'][
'image'])) {
277 array_push($coords,
$_POST[
'cmd'][
'areaEditor'][
'image'][0] .
"," .
$_POST[
'cmd'][
'areaEditor'][
'image'][1]);
279 foreach ($coords as $value) {
280 $editorTpl->setCurrentBlock(
"hidden");
281 $editorTpl->setVariable(
"HIDDEN_NAME",
'image[mapcoords][]');
282 $editorTpl->setVariable(
"HIDDEN_VALUE", $value);
283 $editorTpl->parseCurrentBlock();
286 $editorTpl->setCurrentBlock(
"hidden");
287 $editorTpl->setVariable(
"HIDDEN_NAME",
'shape');
288 $editorTpl->setVariable(
"HIDDEN_VALUE", $shape);
289 $editorTpl->parseCurrentBlock();
292 foreach ($this->object->answers as
$index => $answer) {
296 $disabled_save =
" disabled=\"disabled\"";
300 if (count($coords) == 0) {
302 } elseif (count($coords) == 1) {
304 $preview->addPoint(
$preview->getAreaCount(), join(
",", $coords),
true,
"blue");
305 } elseif (count($coords) == 2) {
306 $c = join(
",", $coords);
312 if (count($coords) == 0) {
314 } elseif (count($coords) == 1) {
316 $preview->addPoint(
$preview->getAreaCount(), join(
",", $coords),
true,
"blue");
317 } elseif (count($coords) == 2) {
318 if (preg_match(
"/(\d+)\s*,\s*(\d+)\s+(\d+)\s*,\s*(\d+)/", $coords[0] .
" " . $coords[1], $matches)) {
319 $c =
"$matches[1],$matches[2]," . (int) sqrt((($matches[3] - $matches[1]) * ($matches[3] - $matches[1])) + (($matches[4] - $matches[2]) * ($matches[4] - $matches[2])));
326 if (count($coords) == 0) {
328 } elseif (count($coords) == 1) {
330 $preview->addPoint(
$preview->getAreaCount(), implode(
",", $coords),
true,
"blue");
331 } elseif (count($coords) > 1) {
334 $c = implode(
",", $coords);
342 $imagepath = $this->
object->getImagePathWeb() .
$preview->getPreviewFilename($this->object->getImagePath(), $this->
object->getImageFilename()) .
"?img=" . time();
344 $editorTpl->setCurrentBlock(
"maparea");
345 $editorTpl->setVariable(
"IMAGE_SOURCE",
"$imagepath");
346 $editorTpl->setVariable(
"IMAGEMAP_NAME",
"image");
347 $editorTpl->parseCurrentBlock();
349 $editorTpl->setCurrentBlock(
"imagearea");
350 $editorTpl->setVariable(
"IMAGE_SOURCE",
"$imagepath");
351 $editorTpl->setVariable(
"ALT_IMAGE", $this->lng->txt(
"imagemap"));
352 $editorTpl->parseCurrentBlock();
355 if (strlen(
$_POST[
'shapetitle'])) {
356 $editorTpl->setCurrentBlock(
"shapetitle");
357 $editorTpl->setVariable(
"VALUE_SHAPETITLE",
$_POST[
"shapetitle"]);
358 $editorTpl->parseCurrentBlock();
361 $editorTpl->setVariable(
"TEXT_IMAGEMAP", $this->lng->txt(
"imagemap"));
362 $editorTpl->setVariable(
"TEXT_SHAPETITLE", $this->lng->txt(
"ass_imap_hint"));
363 $editorTpl->setVariable(
"CANCEL", $this->lng->txt(
"cancel"));
364 $editorTpl->setVariable(
"SAVE", $this->lng->txt(
"save"));
365 $editorTpl->setVariable(
"DISABLED_SAVE", $disabled_save);
368 $editorTpl->setVariable(
"FORMACTION", $this->ctrl->getFormaction($this,
'addRect'));
371 $editorTpl->setVariable(
"FORMACTION", $this->ctrl->getFormaction($this,
'addCircle'));
374 $editorTpl->setVariable(
"FORMACTION", $this->ctrl->getFormaction($this,
'addPoly'));
378 $this->tpl->setVariable(
'QUESTION_DATA', $editorTpl->get());
384 $this->ctrl->redirect($this,
'editQuestion');
391 #require_once './Modules/Test/classes/class.ilObjTest.php'; 392 #if (!ilObjTest::_getUsePreviousAnswers($active_id, true)) 394 # $pass = ilObjTest::_getPass($active_id); 395 # $info = $this->object->getUserSolutionPreferingIntermediate($active_id, $pass); 399 # $info = $this->object->getUserSolutionPreferingIntermediate($active_id, NULL); 402 $info = $this->
object->getTestOutputSolutions($active_id,
$pass);
405 if (strcmp($info[0][
"value1"],
"") != 0) {
406 $formAction .=
"&selImage=" . $info[0][
"value1"];
441 $graphicalOutput =
false,
442 $result_output =
false,
443 $show_question_only =
true,
444 $show_feedback =
false,
445 $show_correct_solution =
false,
446 $show_manual_scoring =
false,
447 $show_question_text =
true 449 $imagepath = $this->
object->getImagePathWeb() . $this->
object->getImageFilename();
450 $solutions = array();
451 if (($active_id > 0) && (!$show_correct_solution)) {
452 include_once
"./Modules/Test/classes/class.ilObjTest.php";
454 if (is_null(
$pass)) {
460 if (!$this->object->getIsMultipleChoice()) {
463 foreach ($this->object->answers as
$index => $answer) {
464 if ($answer->getPoints() > $max_points) {
465 $max_points = $answer->getPoints();
469 array_push($solutions, array(
"value1" => $found_index));
472 foreach ($this->object->answers as
$index => $answer) {
473 $points_checked = $answer->getPoints();
474 $points_unchecked = $answer->getPointsUnchecked();
475 if ($points_checked > $points_unchecked) {
476 if ($points_checked > 0) {
477 array_push($solutions, array(
"value1" =>
$index));
484 if (is_array($solutions)) {
485 include_once
"./Modules/TestQuestionPool/classes/class.ilImagemapPreview.php";
487 foreach ($solutions as $idx => $solution_value) {
488 $value1 = $solution_value[
"value1"];
490 strcmp($value1,
'') === 0 ||
491 !isset($this->object->answers[$value1])
497 $shape = $this->
object->answers[$value1];
502 $shape->getAnswertext(),
509 $solution_id = $value1;
512 $imagepath = implode(
'', [
513 $this->object->getImagePathWeb(),
515 $this->object->getImagePath(),
516 $this->
object->getImageFilename()
522 include_once
"./Services/UICore/classes/class.ilTemplate.php";
523 $template =
new ilTemplate(
"tpl.il_as_qpl_imagemap_question_output_solution.html",
true,
true,
"Modules/TestQuestionPool");
524 $solutiontemplate =
new ilTemplate(
"tpl.il_as_tst_solution_output.html",
true,
true,
"Modules/TestQuestionPool");
525 $questiontext = $this->
object->getQuestion();
526 if ($show_question_text ==
true) {
527 $template->setVariable(
"QUESTIONTEXT", $this->object->prepareTextareaOutput($questiontext,
true));
531 $template->setVariable(
"IMG_ALT", $this->lng->txt(
"imagemap"));
532 $template->setVariable(
"IMG_TITLE", $this->lng->txt(
"imagemap"));
533 if (($active_id > 0) && (!$show_correct_solution)) {
534 if ($graphicalOutput) {
536 $reached_points = $this->
object->getReachedPoints($active_id,
$pass);
537 if ($reached_points == $this->object->getMaximumPoints()) {
538 $template->setCurrentBlock(
"icon_ok");
540 $template->setVariable(
"TEXT_OK", $this->lng->txt(
"answer_is_right"));
541 $template->parseCurrentBlock();
543 $template->setCurrentBlock(
"icon_ok");
544 if ($reached_points > 0) {
546 $template->setVariable(
"TEXT_NOT_OK", $this->lng->txt(
"answer_is_not_correct_but_positive"));
549 $template->setVariable(
"TEXT_NOT_OK", $this->lng->txt(
"answer_is_wrong"));
551 $template->parseCurrentBlock();
556 if ($show_feedback) {
557 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
558 $this->object->getId(),
564 $template->setCurrentBlock(
"feedback");
565 $template->setVariable(
"FEEDBACK", $fb);
566 $template->parseCurrentBlock();
570 $questionoutput = $template->get();
572 if (strlen($feedback)) {
578 $solutiontemplate->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
579 $solutiontemplate->setVariable(
"FEEDBACK", $this->object->prepareTextareaOutput($feedback,
true));
581 $solutiontemplate->setVariable(
"SOLUTION_OUTPUT", $questionoutput);
583 $solutionoutput = $solutiontemplate->get();
584 if (!$show_question_only) {
588 return $solutionoutput;
591 public function getPreview($show_question_only =
false, $showInlineFeedback =
false)
594 $user_solution = array();
597 $user_solution = array_values($this->
getPreviewSession()->getParticipantsSolution());
600 include_once
"./Modules/TestQuestionPool/classes/class.ilImagemapPreview.php";
602 foreach ($user_solution as $idx => $solution_value) {
603 if (strcmp($solution_value,
"") != 0) {
604 $preview->addArea($solution_value, $this->object->answers[$solution_value]->getArea(), $this->
object->answers[$solution_value]->getCoords(), $this->
object->answers[$solution_value]->getAnswertext(),
"",
"",
true,
$this->linecolor);
608 $imagepath = $this->
object->getImagePathWeb() .
$preview->getPreviewFilename($this->object->getImagePath(), $this->
object->getImageFilename());
610 $user_solution = array();
611 $imagepath = $this->
object->getImagePathWeb() . $this->
object->getImageFilename();
615 include_once
"./Services/UICore/classes/class.ilTemplate.php";
616 $template =
new ilTemplate(
"tpl.il_as_qpl_imagemap_question_output.html",
true,
true,
"Modules/TestQuestionPool");
624 foreach ($this->object->answers as $answer_id => $answer) {
625 $parameter =
"&selImage=$answer_id";
626 if (is_array($user_solution) && in_array($answer_id, $user_solution)) {
627 $parameter =
"&remImage=$answer_id";
631 $template->setCurrentBlock(
"imagemap_area_href");
632 $template->setVariable(
"HREF_AREA", $hrefArea . $parameter);
633 $template->parseCurrentBlock();
636 $template->setCurrentBlock(
"imagemap_area");
637 $template->setVariable(
"SHAPE", $answer->getArea());
638 $template->setVariable(
"COORDS", $answer->getCoords());
641 $template->parseCurrentBlock();
643 $questiontext = $this->
object->getQuestion();
644 $template->setVariable(
"QUESTIONTEXT", $this->object->prepareTextareaOutput($questiontext,
true));
646 $template->setVariable(
"IMG_ALT", $this->lng->txt(
"imagemap"));
647 $template->setVariable(
"IMG_TITLE", $this->lng->txt(
"imagemap"));
648 $questionoutput = $template->get();
649 if (!$show_question_only) {
653 return $questionoutput;
657 public function getTestOutput($active_id,
$pass, $is_postponed =
false, $use_post_solutions =
false, $show_feedback =
false)
663 #include_once "./Modules/Test/classes/class.ilObjTest.php"; 664 #if (!ilObjTest::_getUsePreviousAnswers($active_id, true)) 666 # if (is_null($pass)) $pass = ilObjTest::_getPass($active_id); 668 $solutions = $this->
object->getTestOutputSolutions($active_id,
$pass);
671 $userSelection = array();
674 include_once
"./Modules/TestQuestionPool/classes/class.ilImagemapPreview.php";
677 foreach ($solutions as $idx => $solution_value) {
678 if (strlen($solution_value[
"value1"])) {
679 $preview->addArea($solution_value[
"value1"], $this->object->answers[$solution_value[
"value1"]]->getArea(), $this->
object->answers[$solution_value[
"value1"]]->getCoords(), $this->
object->answers[$solution_value[
"value1"]]->getAnswertext(),
"",
"",
true,
$this->linecolor);
680 $userSelection[$selectionIndex] = $solution_value[
"value1"];
682 $selectionIndex = $this->
object->getIsMultipleChoice() ? ++$selectionIndex : $selectionIndex;
688 $imagepath = $this->
object->getImagePathWeb() .
$preview->getPreviewFilename($this->object->getImagePath(), $this->
object->getImageFilename());
690 $imagepath = $this->
object->getImagePathWeb() . $this->
object->getImageFilename();
694 include_once
"./Services/UICore/classes/class.ilTemplate.php";
695 $template =
new ilTemplate(
"tpl.il_as_qpl_imagemap_question_output.html",
true,
true,
"Modules/TestQuestionPool");
696 $this->ctrl->setParameterByClass($this->
getTargetGuiClass(),
"formtimestamp", time());
698 foreach ($this->object->answers as $answer_id => $answer) {
699 $template->setCurrentBlock(
"imagemap_area");
700 $template->setVariable(
"HREF_AREA", $this->
buildAreaLinkTarget($userSelection, $answer_id));
701 $template->setVariable(
"SHAPE", $answer->getArea());
702 $template->setVariable(
"COORDS", $answer->getCoords());
705 $template->parseCurrentBlock();
706 if ($show_feedback) {
707 if (!$this->object->getIsMultipleChoice() && count($userSelection) && current($userSelection) == $answer_id) {
708 $feedback = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
709 $this->object->getId(),
713 if (strlen($feedback)) {
714 $template->setCurrentBlock(
"feedback");
715 $template->setVariable(
"FEEDBACK", $feedback);
716 $template->parseCurrentBlock();
721 $questiontext = $this->
object->getQuestion();
722 $template->setVariable(
"QUESTIONTEXT", $this->object->prepareTextareaOutput($questiontext,
true));
724 $template->setVariable(
"IMG_ALT", $this->lng->txt(
"imagemap"));
725 $template->setVariable(
"IMG_TITLE", $this->lng->txt(
"imagemap"));
726 $questionoutput = $template->get();
727 $pageoutput = $this->
outQuestionPage(
"", $is_postponed, $active_id, $questionoutput);
734 $href = $this->ctrl->getLinkTargetByClass(
749 if ($this->object->getTestPresentationConfig()->isSolutionInitiallyPrefilled()) {
750 $reuseSelection = array();
752 if ($areaIndex === null) {
753 $reuseSelection = $currentSelection;
754 } elseif ($this->object->getIsMultipleChoice()) {
755 if (!in_array($areaIndex, $currentSelection)) {
756 $reuseSelection[] = $areaIndex;
759 foreach (array_diff($currentSelection, array($areaIndex)) as $otherSelectedArea) {
760 $reuseSelection[] = $otherSelectedArea;
763 $reuseSelection[] = $areaIndex;
767 $action =
'reuseSelection';
768 } elseif ($areaIndex !== null) {
769 if (!$this->object->getIsMultipleChoice() || !in_array($areaIndex, $currentSelection)) {
770 $areaAction =
'selImage';
772 $areaAction =
'remImage';
775 $selection = $areaIndex;
776 $action = $areaAction;
781 return "{$action}={$selection}";
795 $rbacsystem = $DIC[
'rbacsystem'];
796 $ilTabs = $DIC[
'ilTabs'];
798 $ilTabs->clearTargets();
800 $this->ctrl->setParameterByClass(
"ilAssQuestionPageGUI",
"q_id",
$_GET[
"q_id"]);
801 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
802 $q_type = $this->
object->getQuestionType();
804 if (strlen($q_type)) {
805 $classname = $q_type .
"GUI";
806 $this->ctrl->setParameterByClass(strtolower($classname),
"sel_question_types", $q_type);
807 $this->ctrl->setParameterByClass(strtolower($classname),
"q_id",
$_GET[
"q_id"]);
811 if ($rbacsystem->checkAccess(
'write',
$_GET[
"ref_id"])) {
815 $this->ctrl->getLinkTargetByClass(
"ilAssQuestionPageGUI",
"edit"),
816 array(
"edit",
"insert",
"exec_pg"),
826 $force_active =
false;
827 if ($rbacsystem->checkAccess(
'write',
$_GET[
"ref_id"])) {
830 $url = $this->ctrl->getLinkTargetByClass($classname,
"editQuestion");
832 if (array_key_exists(
"imagemap_x",
$_POST)) {
833 $force_active =
true;
839 array(
"editQuestion",
"save",
"addArea",
"addRect",
"addCircle",
"addPoly",
840 "uploadingImage",
"uploadingImagemap",
"areaEditor",
841 "saveShape",
"saveEdit",
"originalSyncForm"),
861 $this->ctrl->getLinkTargetByClass($classname,
"assessment"),
873 if (!$this->object->feedbackOBJ->specificAnswerFeedbackExists()) {
877 $output =
'<table class="test_specific_feedback"><tbody>';
879 foreach ($this->object->getAnswers() as $idx => $answer) {
880 $feedback = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
881 $this->object->getId(),
886 $output .=
"<tr><td>{$answer->getAnswerText()}</td><td>{$feedback}</td></tr>";
889 $output .=
'</tbody></table>';
891 return $this->
object->prepareTextareaOutput($output,
true);
924 $tpl =
new ilTemplate(
'tpl.il_as_aggregated_answers_table.html',
true,
true,
"Modules/TestQuestionPool");
926 $tpl->setCurrentBlock(
'headercell');
927 $tpl->setVariable(
'HEADER', $this->lng->txt(
'tst_answer_aggr_answer_header'));
928 $tpl->parseCurrentBlock();
930 $tpl->setCurrentBlock(
'headercell');
931 $tpl->setVariable(
'HEADER', $this->lng->txt(
'tst_answer_aggr_frequency_header'));
932 $tpl->parseCurrentBlock();
934 foreach ($answeringFequencies as $answerIndex => $answeringFrequency) {
935 $tpl->setCurrentBlock(
'aggregaterow');
936 $tpl->setVariable(
'OPTION', $this->object->getAnswer($answerIndex)->getAnswerText());
937 $tpl->setVariable(
'COUNT', $answeringFrequency);
938 $tpl->parseCurrentBlock();
946 $answeringFequencies = array();
948 foreach ($existingAnswerOptions as $answerIndex => $answerOption) {
949 $answeringFequencies[$answerIndex] = 0;
952 foreach ($givenSolutionRows as $solutionRow) {
953 $answeringFequencies[$solutionRow[
'value1']]++;
956 return $answeringFequencies;
976 if (!count($this->object->currentSolution)) {
981 $button->setCaption(
'use_previous_solution');
988 $tpl =
new ilTemplate(
'tpl.tst_question_additional_behaviour_checkbox.html',
true,
true,
'Modules/TestQuestionPool');
989 $tpl->setVariable(
'BUTTON', $button->render());
996 $agg = $this->
aggregateAnswers($relevantAnswers, $this->object->getAnswers());
1000 foreach ($this->object->getAnswers() as $answerIndex => $ans) {
1002 'answer' => $ans->getAnswerText(),
1003 'frequency' => $agg[$answerIndex]
1012 require_once
'Modules/TestQuestionPool/classes/forms/class.ilImagemapCorrectionsInputGUI.php';
1015 $image->setRequired(
true);
1017 if (strlen($this->object->getImageFilename())) {
1018 $image->setImage($this->object->getImagePathWeb() . $this->
object->getImageFilename());
1019 $image->setValue($this->object->getImageFilename());
1020 $image->setAreas($this->object->getAnswers());
1021 $assessmentSetting =
new ilSetting(
"assessment");
1023 $assessmentSetting->get(
"imap_line_color")
1024 )) ?
"\"#" . $assessmentSetting->get(
"imap_line_color") .
"\"" :
"\"#FF0000\"";
1026 $image->setImagePath($this->object->getImagePath());
1027 $image->setImagePathWeb($this->object->getImagePathWeb());
1039 foreach ($this->object->getAnswers() as
$index => $answer) {
1040 if ($this->object->getIsMultipleChoice()) {
1041 $answer->setPointsUnchecked((
float) $areas[$index]->getPointsUnchecked());
1044 $answer->setPoints((
float) $areas[$index]->getPoints());
isTestPresentationContext()
supportsIntermediateSolutionOutput()
Question type specific support of intermediate solution output The function getSolutionOutput respect...
getTestOutput($active_id, $pass, $is_postponed=false, $use_post_solutions=false, $show_feedback=false)
getPreviousSolutionConfirmationCheckboxHtml()
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
hasCorrectSolution($activeId, $passIndex)
addTab_QuestionPreview(ilTabsGUI $tabsGUI)
This class represents an option in a radio group.
saveCorrectionsFormProperties(ilPropertyFormGUI $form)
renderAggregateView($answeringFequencies)
completeTestOutputFormAction($formAction, $active_id, $pass)
populateQuestionSpecificFormPart(\ilPropertyFormGUI $form)
addBasicQuestionFormProperties($form)
Add basic question form properties: assessment: title, author, description, question, working time.
static _getPass($active_id)
Retrieves the actual pass of a given user for a given test.
addTab_QuestionHints(ilTabsGUI $tabs)
adds the hints tab to ilTabsGUI
saveShape()
Saves a shape of the area editor.
getAnswersFrequency($relevantAnswers, $questionIndex)
buildBasicEditFormObject()
populateAnswerSpecificFormPart(\ilPropertyFormGUI $form)
getQuestionTemplate()
get question template
const CSS_CLASS_FEEDBACK_CORRECT
getPreview($show_question_only=false, $showInlineFeedback=false)
getSpecificFeedbackOutput($userSolution)
buildAreaLinkTarget($currentSelection, $areaIndex)
populateTaxonomyFormSection(ilPropertyFormGUI $form)
Image map image preview creator.
getUseIntermediateSolution()
Get if intermediate solution should be used for solution output.
setQuestionTabs()
Sets the ILIAS tabs for this question type.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
getAggregatedAnswersView($relevant_answers)
Returns an html string containing a question specific representation of the answers so far given in t...
buildSelectionParameter($currentSelection, $areaIndex=null)
static appendUrlParameterString($a_url, $a_par, $xml_style=false)
append URL parameter string ("par1=value1&par2=value2...") to given URL string
writeQuestionGenericPostData()
aggregateAnswers($givenSolutionRows, $existingAnswerOptions)
writeAnswerSpecificPostData(ilPropertyFormGUI $form)
Extracts the answer specific values from $_POST and applies them to the data object.
getILIASPage($html="")
Returns the ILIAS Page around a question.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static implodeKeyValues($keyValues)
writeQuestionSpecificPostData(ilPropertyFormGUI $form)
Extracts the question specific values from $_POST and applies them to the data object.
const MODE_MULTIPLE_CHOICE
Class for image map questions.
addTab_QuestionFeedback(ilTabsGUI $tabs)
adds the feedback tab to ilTabsGUI
const CSS_CLASS_FEEDBACK_WRONG
static signFile($path_to_file)
Basic GUI class for assessment questions.
getAnswerFeedbackOutput($active_id, $pass)
Returns the answer generic feedback depending on the results of the question.
writePostData($always=false)
{}
saveTaxonomyAssignments()
Image map question GUI representation.
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
output question page
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)
__construct(Container $dic, ilPlugin $plugin)
addBackTab(ilTabsGUI $ilTabs)
Interface ilGuiAnswerScoringAdjustable.
getAfterParticipationSuppressionQuestionPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
getAfterParticipationSuppressionAnswerPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
__construct($id=-1)
assImagemapQuestionGUI constructor
Interface ilGuiQuestionScoringAdjustable.
static _getUsePreviousAnswers($active_id, $user_active_user_setting=false)
Returns if the previous results should be hidden for a learner.
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
addTab_SuggestedSolution(ilTabsGUI $tabs, $classname)
addQuestionFormCommandButtons($form)
Add the command buttons of a question properties form.
editQuestion(ilPropertyFormGUI $form=null)