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) {
167 $this->tpl->setVariable(
'QUESTION_DATA', $this->ctrl->getHTML($form));
179 $radioGroup =
new ilRadioGroupInputGUI($this->lng->txt(
'tst_imap_qst_mode'),
'is_multiple_choice');
180 $radioGroup->
setValue($this->object->getIsMultipleChoice());
182 $this->lng->txt(
'tst_imap_qst_mode_sc'),
186 $this->lng->txt(
'tst_imap_qst_mode_mc'),
189 $radioGroup->addOption($modeSingleChoice);
190 $radioGroup->addOption($modeMultipleChoice);
193 require_once
'Modules/TestQuestionPool/classes/forms/class.ilImagemapFileInputGUI.php';
196 $image->setRequired(
true);
198 if (strlen($this->object->getImageFilename())) {
199 $image->setImage($this->object->getImagePathWeb() . $this->
object->getImageFilename());
200 $image->setValue($this->object->getImageFilename());
201 $image->setAreas($this->object->getAnswers());
202 $assessmentSetting =
new ilSetting(
"assessment");
204 $assessmentSetting->get(
"imap_line_color")
205 )) ?
"\"#" . $assessmentSetting->get(
"imap_line_color") .
"\"" :
"\"#FF0000\"";
207 $image->setImagePath($this->object->getImagePath());
208 $image->setImagePathWeb($this->object->getImagePathWeb());
212 require_once
'Modules/TestQuestionPool/classes/forms/class.ilHtmlImageMapFileInputGUI.php';
240 switch (
$_POST[
"shape"]) {
242 $coords = join(
",",
$_POST[
'image'][
'mapcoords']);
243 ilUtil::sendSuccess($this->lng->txt(
'msg_rect_added'),
true);
246 if (preg_match(
"/(\d+)\s*,\s*(\d+)\s+(\d+)\s*,\s*(\d+)/",
$_POST[
'image'][
'mapcoords'][0] .
" " .
$_POST[
'image'][
'mapcoords'][1], $matches)) {
247 $coords =
"$matches[1],$matches[2]," . (int) sqrt((($matches[3] - $matches[1]) * ($matches[3] - $matches[1])) + (($matches[4] - $matches[2]) * ($matches[4] - $matches[2])));
249 ilUtil::sendSuccess($this->lng->txt(
'msg_circle_added'),
true);
252 $coords = join(
",", $_POST[
'image'][
'mapcoords']);
253 ilUtil::sendSuccess($this->lng->txt(
'msg_poly_added'),
true);
256 $this->
object->addAnswer(
$_POST[
"shapetitle"], 0, count($this->object->getAnswers()), $coords,
$_POST[
"shape"]);
257 $this->
object->saveToDb();
258 $this->ctrl->redirect($this,
'editQuestion');
263 $shape = (strlen($shape)) ? $shape :
$_POST[
'shape'];
267 $editorTpl =
new ilTemplate(
'tpl.il_as_qpl_imagemap_question.html',
true,
true,
'Modules/TestQuestionPool');
270 if (is_array(
$_POST[
'image'][
'mapcoords'])) {
271 foreach (
$_POST[
'image'][
'mapcoords'] as $value) {
272 array_push($coords, $value);
275 if (is_array(
$_POST[
'cmd'][
'areaEditor'][
'image'])) {
276 array_push($coords,
$_POST[
'cmd'][
'areaEditor'][
'image'][0] .
"," .
$_POST[
'cmd'][
'areaEditor'][
'image'][1]);
278 foreach ($coords as $value) {
279 $editorTpl->setCurrentBlock(
"hidden");
280 $editorTpl->setVariable(
"HIDDEN_NAME",
'image[mapcoords][]');
281 $editorTpl->setVariable(
"HIDDEN_VALUE", $value);
282 $editorTpl->parseCurrentBlock();
285 $editorTpl->setCurrentBlock(
"hidden");
286 $editorTpl->setVariable(
"HIDDEN_NAME",
'shape');
287 $editorTpl->setVariable(
"HIDDEN_VALUE", $shape);
288 $editorTpl->parseCurrentBlock();
291 foreach ($this->object->answers as
$index => $answer) {
295 $disabled_save =
" disabled=\"disabled\"";
299 if (count($coords) == 0) {
301 } elseif (count($coords) == 1) {
303 $preview->addPoint(
$preview->getAreaCount(), join(
",", $coords),
true,
"blue");
304 } elseif (count($coords) == 2) {
305 $c = join(
",", $coords);
311 if (count($coords) == 0) {
313 } elseif (count($coords) == 1) {
315 $preview->addPoint(
$preview->getAreaCount(), join(
",", $coords),
true,
"blue");
316 } elseif (count($coords) == 2) {
317 if (preg_match(
"/(\d+)\s*,\s*(\d+)\s+(\d+)\s*,\s*(\d+)/", $coords[0] .
" " . $coords[1], $matches)) {
318 $c =
"$matches[1],$matches[2]," . (int) sqrt((($matches[3] - $matches[1]) * ($matches[3] - $matches[1])) + (($matches[4] - $matches[2]) * ($matches[4] - $matches[2])));
325 if (count($coords) == 0) {
327 } elseif (count($coords) == 1) {
329 $preview->addPoint(
$preview->getAreaCount(), implode(
",", $coords),
true,
"blue");
330 } elseif (count($coords) > 1) {
333 $c = implode(
",", $coords);
341 $imagepath = $this->
object->getImagePathWeb() .
$preview->getPreviewFilename($this->object->getImagePath(), $this->
object->getImageFilename()) .
"?img=" . time();
343 $editorTpl->setCurrentBlock(
"maparea");
344 $editorTpl->setVariable(
"IMAGE_SOURCE",
"$imagepath");
345 $editorTpl->setVariable(
"IMAGEMAP_NAME",
"image");
346 $editorTpl->parseCurrentBlock();
348 $editorTpl->setCurrentBlock(
"imagearea");
349 $editorTpl->setVariable(
"IMAGE_SOURCE",
"$imagepath");
350 $editorTpl->setVariable(
"ALT_IMAGE", $this->lng->txt(
"imagemap"));
351 $editorTpl->parseCurrentBlock();
354 if (strlen(
$_POST[
'shapetitle'])) {
355 $editorTpl->setCurrentBlock(
"shapetitle");
356 $editorTpl->setVariable(
"VALUE_SHAPETITLE",
$_POST[
"shapetitle"]);
357 $editorTpl->parseCurrentBlock();
360 $editorTpl->setVariable(
"TEXT_IMAGEMAP", $this->lng->txt(
"imagemap"));
361 $editorTpl->setVariable(
"TEXT_SHAPETITLE", $this->lng->txt(
"ass_imap_hint"));
362 $editorTpl->setVariable(
"CANCEL", $this->lng->txt(
"cancel"));
363 $editorTpl->setVariable(
"SAVE", $this->lng->txt(
"save"));
364 $editorTpl->setVariable(
"DISABLED_SAVE", $disabled_save);
367 $editorTpl->setVariable(
"FORMACTION", $this->ctrl->getFormaction($this,
'addRect'));
370 $editorTpl->setVariable(
"FORMACTION", $this->ctrl->getFormaction($this,
'addCircle'));
373 $editorTpl->setVariable(
"FORMACTION", $this->ctrl->getFormaction($this,
'addPoly'));
377 $this->tpl->setVariable(
'QUESTION_DATA', $editorTpl->get());
383 $this->ctrl->redirect($this,
'editQuestion');
390 #require_once './Modules/Test/classes/class.ilObjTest.php'; 391 #if (!ilObjTest::_getUsePreviousAnswers($active_id, true)) 393 # $pass = ilObjTest::_getPass($active_id); 394 # $info = $this->object->getUserSolutionPreferingIntermediate($active_id, $pass); 398 # $info = $this->object->getUserSolutionPreferingIntermediate($active_id, NULL); 401 $info = $this->
object->getTestOutputSolutions($active_id,
$pass);
404 if (strcmp($info[0][
"value1"],
"") != 0) {
405 $formAction .=
"&selImage=" . $info[0][
"value1"];
440 $graphicalOutput =
false,
441 $result_output =
false,
442 $show_question_only =
true,
443 $show_feedback =
false,
444 $show_correct_solution =
false,
445 $show_manual_scoring =
false,
446 $show_question_text =
true 448 $imagepath = $this->
object->getImagePathWeb() . $this->
object->getImageFilename();
449 $solutions = array();
450 if (($active_id > 0) && (!$show_correct_solution)) {
451 include_once
"./Modules/Test/classes/class.ilObjTest.php";
453 if (is_null(
$pass)) {
459 if (!$this->object->getIsMultipleChoice()) {
462 foreach ($this->object->answers as
$index => $answer) {
463 if ($answer->getPoints() > $max_points) {
464 $max_points = $answer->getPoints();
468 array_push($solutions, array(
"value1" => $found_index));
471 foreach ($this->object->answers as
$index => $answer) {
472 $points_checked = $answer->getPoints();
473 $points_unchecked = $answer->getPointsUnchecked();
474 if ($points_checked > $points_unchecked) {
475 if ($points_checked > 0) {
476 array_push($solutions, array(
"value1" =>
$index));
483 if (is_array($solutions)) {
484 include_once
"./Modules/TestQuestionPool/classes/class.ilImagemapPreview.php";
486 foreach ($solutions as $idx => $solution_value) {
487 $value1 = $solution_value[
"value1"];
489 strcmp($value1,
'') === 0 ||
490 !isset($this->object->answers[$value1])
496 $shape = $this->
object->answers[$value1];
501 $shape->getAnswertext(),
508 $solution_id = $value1;
511 $imagepath = implode(
'', [
512 $this->object->getImagePathWeb(),
514 $this->object->getImagePath(),
515 $this->
object->getImageFilename()
521 include_once
"./Services/UICore/classes/class.ilTemplate.php";
522 $template =
new ilTemplate(
"tpl.il_as_qpl_imagemap_question_output_solution.html",
true,
true,
"Modules/TestQuestionPool");
523 $solutiontemplate =
new ilTemplate(
"tpl.il_as_tst_solution_output.html",
true,
true,
"Modules/TestQuestionPool");
524 if ($show_question_text ==
true) {
525 $template->setVariable(
"QUESTIONTEXT", $this->object->getQuestionForHTMLOutput());
529 $template->setVariable(
"IMG_ALT", $this->lng->txt(
"imagemap"));
530 $template->setVariable(
"IMG_TITLE", $this->lng->txt(
"imagemap"));
531 if (($active_id > 0) && (!$show_correct_solution)) {
532 if ($graphicalOutput) {
534 $reached_points = $this->
object->getReachedPoints($active_id,
$pass);
535 if ($reached_points == $this->object->getMaximumPoints()) {
536 $template->setCurrentBlock(
"icon_ok");
538 $template->setVariable(
"TEXT_OK", $this->lng->txt(
"answer_is_right"));
539 $template->parseCurrentBlock();
541 $template->setCurrentBlock(
"icon_ok");
542 if ($reached_points > 0) {
544 $template->setVariable(
"TEXT_NOT_OK", $this->lng->txt(
"answer_is_not_correct_but_positive"));
547 $template->setVariable(
"TEXT_NOT_OK", $this->lng->txt(
"answer_is_wrong"));
549 $template->parseCurrentBlock();
554 if ($show_feedback) {
555 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
556 $this->object->getId(),
562 $template->setCurrentBlock(
"feedback");
563 $template->setVariable(
"FEEDBACK", $fb);
564 $template->parseCurrentBlock();
568 $questionoutput = $template->get();
570 if (strlen($feedback)) {
576 $solutiontemplate->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
577 $solutiontemplate->setVariable(
"FEEDBACK", $this->object->prepareTextareaOutput($feedback,
true));
579 $solutiontemplate->setVariable(
"SOLUTION_OUTPUT", $questionoutput);
581 $solutionoutput = $solutiontemplate->get();
582 if (!$show_question_only) {
586 return $solutionoutput;
589 public function getPreview($show_question_only =
false, $showInlineFeedback =
false)
592 $user_solution = array();
595 $user_solution = array_values($this->
getPreviewSession()->getParticipantsSolution());
598 include_once
"./Modules/TestQuestionPool/classes/class.ilImagemapPreview.php";
600 foreach ($user_solution as $idx => $solution_value) {
601 if (strcmp($solution_value,
"") != 0) {
602 $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);
606 $imagepath = $this->
object->getImagePathWeb() .
$preview->getPreviewFilename($this->object->getImagePath(), $this->
object->getImageFilename());
608 $user_solution = array();
609 $imagepath = $this->
object->getImagePathWeb() . $this->
object->getImageFilename();
613 include_once
"./Services/UICore/classes/class.ilTemplate.php";
614 $template =
new ilTemplate(
"tpl.il_as_qpl_imagemap_question_output.html",
true,
true,
"Modules/TestQuestionPool");
622 foreach ($this->object->answers as $answer_id => $answer) {
623 $parameter =
"&selImage=$answer_id";
624 if (is_array($user_solution) && in_array($answer_id, $user_solution)) {
625 $parameter =
"&remImage=$answer_id";
629 $template->setCurrentBlock(
"imagemap_area_href");
630 $template->setVariable(
"HREF_AREA", $hrefArea . $parameter);
631 $template->parseCurrentBlock();
634 $template->setCurrentBlock(
"imagemap_area");
635 $template->setVariable(
"SHAPE", $answer->getArea());
636 $template->setVariable(
"COORDS", $answer->getCoords());
639 $template->parseCurrentBlock();
641 $template->setVariable(
"QUESTIONTEXT", $this->object->getQuestionForHTMLOutput());
643 $template->setVariable(
"IMG_ALT", $this->lng->txt(
"imagemap"));
644 $template->setVariable(
"IMG_TITLE", $this->lng->txt(
"imagemap"));
645 $questionoutput = $template->get();
646 if (!$show_question_only) {
650 return $questionoutput;
654 public function getTestOutput($active_id,
$pass, $is_postponed =
false, $use_post_solutions =
false, $show_feedback =
false)
660 #include_once "./Modules/Test/classes/class.ilObjTest.php"; 661 #if (!ilObjTest::_getUsePreviousAnswers($active_id, true)) 663 # if (is_null($pass)) $pass = ilObjTest::_getPass($active_id); 665 $solutions = $this->
object->getTestOutputSolutions($active_id,
$pass);
668 $userSelection = array();
671 include_once
"./Modules/TestQuestionPool/classes/class.ilImagemapPreview.php";
674 foreach ($solutions as $idx => $solution_value) {
675 if (strlen($solution_value[
"value1"])) {
676 $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);
677 $userSelection[$selectionIndex] = $solution_value[
"value1"];
679 $selectionIndex = $this->
object->getIsMultipleChoice() ? ++$selectionIndex : $selectionIndex;
685 $imagepath = $this->
object->getImagePathWeb() .
$preview->getPreviewFilename($this->object->getImagePath(), $this->
object->getImageFilename());
687 $imagepath = $this->
object->getImagePathWeb() . $this->
object->getImageFilename();
691 include_once
"./Services/UICore/classes/class.ilTemplate.php";
692 $template =
new ilTemplate(
"tpl.il_as_qpl_imagemap_question_output.html",
true,
true,
"Modules/TestQuestionPool");
693 $this->ctrl->setParameterByClass($this->
getTargetGuiClass(),
"formtimestamp", time());
695 foreach ($this->object->answers as $answer_id => $answer) {
696 $template->setCurrentBlock(
"imagemap_area");
697 $template->setVariable(
"HREF_AREA", $this->
buildAreaLinkTarget($userSelection, $answer_id));
698 $template->setVariable(
"SHAPE", $answer->getArea());
699 $template->setVariable(
"COORDS", $answer->getCoords());
702 $template->parseCurrentBlock();
703 if ($show_feedback) {
704 if (!$this->object->getIsMultipleChoice() && count($userSelection) && current($userSelection) == $answer_id) {
705 $feedback = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
706 $this->object->getId(),
710 if (strlen($feedback)) {
711 $template->setCurrentBlock(
"feedback");
712 $template->setVariable(
"FEEDBACK", $feedback);
713 $template->parseCurrentBlock();
718 $template->setVariable(
"QUESTIONTEXT", $this->object->getQuestionForHTMLOutput());
720 $template->setVariable(
"IMG_ALT", $this->lng->txt(
"imagemap"));
721 $template->setVariable(
"IMG_TITLE", $this->lng->txt(
"imagemap"));
722 $questionoutput = $template->get();
723 $pageoutput = $this->
outQuestionPage(
"", $is_postponed, $active_id, $questionoutput);
730 $href = $this->ctrl->getLinkTargetByClass(
745 if ($this->object->getTestPresentationConfig()->isSolutionInitiallyPrefilled()) {
746 $reuseSelection = array();
748 if ($areaIndex === null) {
749 $reuseSelection = $currentSelection;
750 } elseif ($this->object->getIsMultipleChoice()) {
751 if (!in_array($areaIndex, $currentSelection)) {
752 $reuseSelection[] = $areaIndex;
755 foreach (array_diff($currentSelection, array($areaIndex)) as $otherSelectedArea) {
756 $reuseSelection[] = $otherSelectedArea;
759 $reuseSelection[] = $areaIndex;
763 $action =
'reuseSelection';
764 } elseif ($areaIndex !== null) {
765 if (!$this->object->getIsMultipleChoice() || !in_array($areaIndex, $currentSelection)) {
766 $areaAction =
'selImage';
768 $areaAction =
'remImage';
771 $selection = $areaIndex;
772 $action = $areaAction;
777 return "{$action}={$selection}";
782 if (!$this->object->feedbackOBJ->specificAnswerFeedbackExists()) {
786 $output =
'<table class="test_specific_feedback"><tbody>';
788 foreach ($this->object->getAnswers() as $idx => $answer) {
789 $feedback = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
790 $this->object->getId(),
795 $output .=
"<tr><td>{$answer->getAnswerText()}</td><td>{$feedback}</td></tr>";
798 $output .=
'</tbody></table>';
800 return $this->
object->prepareTextareaOutput($output,
true);
833 $tpl =
new ilTemplate(
'tpl.il_as_aggregated_answers_table.html',
true,
true,
"Modules/TestQuestionPool");
835 $tpl->setCurrentBlock(
'headercell');
836 $tpl->setVariable(
'HEADER', $this->lng->txt(
'tst_answer_aggr_answer_header'));
837 $tpl->parseCurrentBlock();
839 $tpl->setCurrentBlock(
'headercell');
840 $tpl->setVariable(
'HEADER', $this->lng->txt(
'tst_answer_aggr_frequency_header'));
841 $tpl->parseCurrentBlock();
843 foreach ($answeringFequencies as $answerIndex => $answeringFrequency) {
844 $tpl->setCurrentBlock(
'aggregaterow');
845 $tpl->setVariable(
'OPTION', $this->object->getAnswer($answerIndex)->getAnswerText());
846 $tpl->setVariable(
'COUNT', $answeringFrequency);
847 $tpl->parseCurrentBlock();
855 $answeringFequencies = array();
857 foreach ($existingAnswerOptions as $answerIndex => $answerOption) {
858 $answeringFequencies[$answerIndex] = 0;
861 foreach ($givenSolutionRows as $solutionRow) {
862 $answeringFequencies[$solutionRow[
'value1']]++;
865 return $answeringFequencies;
885 if (!count($this->object->currentSolution)) {
890 $button->setCaption(
'use_previous_solution');
897 $tpl =
new ilTemplate(
'tpl.tst_question_additional_behaviour_checkbox.html',
true,
true,
'Modules/TestQuestionPool');
898 $tpl->setVariable(
'BUTTON', $button->render());
905 $agg = $this->
aggregateAnswers($relevantAnswers, $this->object->getAnswers());
909 foreach ($this->object->getAnswers() as $answerIndex => $ans) {
911 'answer' => $ans->getAnswerText(),
912 'frequency' => $agg[$answerIndex]
921 require_once
'Modules/TestQuestionPool/classes/forms/class.ilImagemapCorrectionsInputGUI.php';
924 $image->setRequired(
true);
926 if (strlen($this->object->getImageFilename())) {
927 $image->setImage($this->object->getImagePathWeb() . $this->
object->getImageFilename());
928 $image->setValue($this->object->getImageFilename());
929 $image->setAreas($this->object->getAnswers());
930 $assessmentSetting =
new ilSetting(
"assessment");
932 $assessmentSetting->get(
"imap_line_color")
933 )) ?
"\"#" . $assessmentSetting->get(
"imap_line_color") .
"\"" :
"\"#FF0000\"";
935 $image->setImagePath($this->object->getImagePath());
936 $image->setImagePathWeb($this->object->getImagePathWeb());
948 foreach ($this->object->getAnswers() as
$index => $answer) {
949 if ($this->object->getIsMultipleChoice()) {
950 $answer->setPointsUnchecked((
float) $areas[$index]->getPointsUnchecked());
953 $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)
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.
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.
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.
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)
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)
addQuestionFormCommandButtons($form)
Add the command buttons of a question properties form.
editQuestion(ilPropertyFormGUI $form=null)