19 include_once
'./Modules/Test/classes/inc.AssessmentConstants.php';
52 $this->
object->loadFromDb(
$id);
54 $assessmentSetting =
new ilSetting(
"assessment");
55 $this->linecolor = (strlen($assessmentSetting->get(
"imap_line_color"))) ?
"#" . $assessmentSetting->get(
"imap_line_color") :
"#FF0000";
60 if (isset($_POST[
"imagemap"]) ||
61 isset($_POST[
"imagemap_x"]) ||
62 isset($_POST[
"imagemap_y"])) {
63 $this->
ctrl->setCmd(
"getCoords");
72 $this->
object->deleteImage();
73 $this->
object->saveToDb();
74 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
75 $this->
ctrl->redirect($this,
'editQuestion');
84 $form->setValuesByPost();
86 if (!$always && !$form->checkInput()) {
101 if ($this->
ctrl->getCmd() !=
'deleteImage') {
102 $this->
object->flushAnswers();
103 if (isset($_POST[
'image']) && is_array($_POST[
'image']) && is_array($_POST[
'image'][
'coords'][
'name'])) {
104 foreach ($_POST[
'image'][
'coords'][
'name'] as $idx =>
$name) {
105 if ($this->
object->getIsMultipleChoice() && isset($_POST[
'image'][
'coords'][
'points_unchecked'])) {
106 $pointsUnchecked = $_POST[
'image'][
'coords'][
'points_unchecked'][$idx];
108 $pointsUnchecked = 0.0;
111 $this->
object->addAnswer(
113 $_POST[
'image'][
'coords'][
'points'][$idx],
115 $_POST[
'image'][
'coords'][
'coords'][$idx],
116 $_POST[
'image'][
'coords'][
'shape'][$idx],
122 if (strlen($_FILES[
'imagemapfile'][
'tmp_name'])) {
123 if ($this->
object->getSelfAssessmentEditingMode() && $this->
object->getId() < 1) {
124 $this->
object->createNewQuestion();
127 $this->
object->uploadImagemap($form->
getItemByPostVar(
'imagemapfile')->getShapes());
134 if ($this->
ctrl->getCmd() !=
'deleteImage') {
135 if (strlen($_FILES[
'image'][
'tmp_name']) == 0) {
136 $this->
object->setImageFilename($_POST[
"image_name"]);
139 if (strlen($_FILES[
'image'][
'tmp_name'])) {
140 if ($this->
object->getSelfAssessmentEditingMode() && $this->
object->getId() < 1) {
141 $this->
object->createNewQuestion();
143 $this->
object->setImageFilename($_FILES[
'image'][
'name'], $_FILES[
'image'][
'tmp_name']);
169 if (null === $form) {
175 $this->tpl->setVariable(
'QUESTION_DATA', $this->
ctrl->getHTML($form));
188 $radioGroup->
setValue((
string) ((
int) ($this->
object->getIsMultipleChoice())));
190 $this->
lng->txt(
'tst_imap_qst_mode_sc'),
194 $this->
lng->txt(
'tst_imap_qst_mode_mc'),
197 $radioGroup->addOption($modeSingleChoice);
198 $radioGroup->addOption($modeMultipleChoice);
203 $image->setRequired(
true);
205 if (strlen($this->
object->getImageFilename())) {
206 $image->setImage($this->
object->getImagePathWeb() . $this->
object->getImageFilename());
207 $image->setValue($this->
object->getImageFilename());
208 $image->setAreas($this->
object->getAnswers());
209 $assessmentSetting =
new ilSetting(
"assessment");
211 $assessmentSetting->get(
"imap_line_color")
212 )) ?
"\"#" . $assessmentSetting->get(
"imap_line_color") .
"\"" :
"\"#FF0000\"";
214 $image->setImagePath($this->
object->getImagePath());
215 $image->setImagePathWeb($this->
object->getImagePathWeb());
246 switch ($_POST[
"shape"]) {
248 $coords = join(
",", $_POST[
'image'][
'mapcoords']);
249 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_rect_added'),
true);
252 if (preg_match(
"/(\d+)\s*,\s*(\d+)\s+(\d+)\s*,\s*(\d+)/", $_POST[
'image'][
'mapcoords'][0] .
" " . $_POST[
'image'][
'mapcoords'][1], $matches)) {
253 $coords =
"$matches[1],$matches[2]," . (
int) sqrt((($matches[3] - $matches[1]) * ($matches[3] - $matches[1])) + (($matches[4] - $matches[2]) * ($matches[4] - $matches[2])));
255 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_circle_added'),
true);
258 $coords = join(
",", $_POST[
'image'][
'mapcoords']);
259 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_poly_added'),
true);
262 $this->
object->addAnswer($_POST[
"shapetitle"], 0, count($this->
object->getAnswers()), $coords, $_POST[
"shape"]);
263 $this->
object->saveToDb();
264 $this->
ctrl->redirect($this,
'editQuestion');
269 $shape = (strlen($shape)) ? $shape : $_POST[
'shape'];
273 $editorTpl =
new ilTemplate(
'tpl.il_as_qpl_imagemap_question.html',
true,
true,
'Modules/TestQuestionPool');
276 $mapcoords = $this->request->raw(
'image');
277 if ($mapcoords != null && isset($mapcoords[
'mapcoords']) && is_array($mapcoords[
'mapcoords'])) {
278 foreach ($mapcoords[
'mapcoords'] as $value) {
279 array_push($coords, $value);
282 $cmd = $this->request->raw(
'cmd');
283 if ($cmd != null && array_key_exists(
'areaEditor', $cmd) && is_array($cmd[
'areaEditor'][
'image'])) {
284 array_push($coords, $cmd[
'areaEditor'][
'image'][0] .
"," . $cmd[
'areaEditor'][
'image'][1]);
286 foreach ($coords as $value) {
287 $editorTpl->setCurrentBlock(
"hidden");
288 $editorTpl->setVariable(
"HIDDEN_NAME",
'image[mapcoords][]');
289 $editorTpl->setVariable(
"HIDDEN_VALUE", $value);
290 $editorTpl->parseCurrentBlock();
293 $editorTpl->setCurrentBlock(
"hidden");
294 $editorTpl->setVariable(
"HIDDEN_NAME",
'shape');
295 $editorTpl->setVariable(
"HIDDEN_VALUE", $shape);
296 $editorTpl->parseCurrentBlock();
303 $disabled_save =
" disabled=\"disabled\"";
307 if (count($coords) == 0) {
308 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"rectangle_click_tl_corner"));
309 } elseif (count($coords) == 1) {
310 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"rectangle_click_br_corner"));
311 $preview->addPoint(
$preview->getAreaCount(), join(
",", $coords),
true,
"blue");
312 } elseif (count($coords) == 2) {
313 $c = join(
",", $coords);
319 if (count($coords) == 0) {
320 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"circle_click_center"));
321 } elseif (count($coords) == 1) {
322 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"circle_click_circle"));
323 $preview->addPoint(
$preview->getAreaCount(), join(
",", $coords),
true,
"blue");
324 } elseif (count($coords) == 2) {
325 if (preg_match(
"/(\d+)\s*,\s*(\d+)\s+(\d+)\s*,\s*(\d+)/", $coords[0] .
" " . $coords[1], $matches)) {
326 $c =
"$matches[1],$matches[2]," . (
int) sqrt((($matches[3] - $matches[1]) * ($matches[3] - $matches[1])) + (($matches[4] - $matches[2]) * ($matches[4] - $matches[2])));
333 if (count($coords) == 0) {
334 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"polygon_click_starting_point"));
335 } elseif (count($coords) == 1) {
336 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"polygon_click_next_point"));
337 $preview->addPoint(
$preview->getAreaCount(), implode(
",", $coords),
true,
"blue");
338 } elseif (count($coords) > 1) {
339 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"polygon_click_next_or_save"));
341 $c = implode(
",", $coords);
346 $preview->addArea(
$preview->getAreaCount(), $shape,
$c, $_POST[
"shapetitle"] ??
'',
"",
"",
true,
"blue");
349 $imagepath = $this->
object->getImagePathWeb() .
$preview->getPreviewFilename($this->
object->getImagePath(), $this->
object->getImageFilename()) .
"?img=" . time();
351 $editorTpl->setCurrentBlock(
"maparea");
352 $editorTpl->setVariable(
"IMAGE_SOURCE",
"$imagepath");
353 $editorTpl->setVariable(
"IMAGEMAP_NAME",
"image");
354 $editorTpl->parseCurrentBlock();
356 $editorTpl->setCurrentBlock(
"imagearea");
357 $editorTpl->setVariable(
"IMAGE_SOURCE",
"$imagepath");
358 $editorTpl->setVariable(
"ALT_IMAGE", $this->
lng->txt(
"imagemap"));
359 $editorTpl->parseCurrentBlock();
362 if (isset($_POST[
'shapetitle']) && $_POST[
'shapetitle'] !=
'') {
363 $editorTpl->setCurrentBlock(
"shapetitle");
364 $editorTpl->setVariable(
"VALUE_SHAPETITLE", $_POST[
"shapetitle"]);
365 $editorTpl->parseCurrentBlock();
368 $editorTpl->setVariable(
"TEXT_IMAGEMAP", $this->
lng->txt(
"imagemap"));
369 $editorTpl->setVariable(
"TEXT_SHAPETITLE", $this->
lng->txt(
"ass_imap_hint"));
370 $editorTpl->setVariable(
"CANCEL", $this->
lng->txt(
"cancel"));
371 $editorTpl->setVariable(
"SAVE", $this->
lng->txt(
"save"));
372 $editorTpl->setVariable(
"DISABLED_SAVE", $disabled_save);
375 $editorTpl->setVariable(
"FORMACTION", $this->
ctrl->getFormaction($this,
'addRect'));
378 $editorTpl->setVariable(
"FORMACTION", $this->
ctrl->getFormaction($this,
'addCircle'));
381 $editorTpl->setVariable(
"FORMACTION", $this->
ctrl->getFormaction($this,
'addPoly'));
385 $this->tpl->setVariable(
'QUESTION_DATA', $editorTpl->get());
390 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'msg_cancel'),
true);
391 $this->
ctrl->redirect($this,
'editQuestion');
398 $info = $this->
object->getTestOutputSolutions($active_id, $pass);
401 if (strcmp($info[0][
"value1"],
"") != 0) {
402 $formAction .=
"&selImage=" . $info[0][
"value1"];
426 $graphicalOutput =
false,
427 $result_output =
false,
428 $show_question_only =
true,
429 $show_feedback =
false,
430 $show_correct_solution =
false,
431 $show_manual_scoring =
false,
432 $show_question_text =
true 434 $imagepath = $this->
object->getImagePathWeb() . $this->
object->getImageFilename();
435 $solutions = array();
436 if (($active_id > 0) && (!$show_correct_solution)) {
437 $solutions = $this->
object->getSolutionValues($active_id, $pass);
439 if (!$this->
object->getIsMultipleChoice()) {
443 if ($answer->getPoints() > $max_points) {
444 $max_points = $answer->getPoints();
448 array_push($solutions, array(
"value1" => $found_index));
452 $points_checked = $answer->getPoints();
453 $points_unchecked = $answer->getPointsUnchecked();
454 if ($points_checked > $points_unchecked) {
455 if ($points_checked > 0) {
456 array_push($solutions, array(
"value1" =>
$index));
463 if (is_array($solutions)) {
465 foreach ($solutions as $idx => $solution_value) {
466 $value1 = $solution_value[
"value1"];
468 strcmp($value1,
'') === 0 ||
469 !isset($this->
object->answers[$value1])
475 $shape = $this->
object->answers[$value1];
480 $shape->getAnswertext(),
487 $solution_id = $value1;
490 $imagepath = implode(
'', [
491 $this->
object->getImagePathWeb(),
493 $this->
object->getImagePath(),
494 $this->
object->getImageFilename()
500 $template =
new ilTemplate(
"tpl.il_as_qpl_imagemap_question_output_solution.html",
true,
true,
"Modules/TestQuestionPool");
501 $solutiontemplate =
new ilTemplate(
"tpl.il_as_tst_solution_output.html",
true,
true,
"Modules/TestQuestionPool");
502 if ($show_question_text ==
true) {
503 $template->setVariable(
"QUESTIONTEXT", $this->
object->getQuestionForHTMLOutput());
507 $template->setVariable(
"IMG_ALT", $this->
lng->txt(
"imagemap"));
508 $template->setVariable(
"IMG_TITLE", $this->
lng->txt(
"imagemap"));
509 if (($active_id > 0) && (!$show_correct_solution)) {
510 if ($graphicalOutput) {
512 $reached_points = $this->
object->getReachedPoints($active_id, $pass);
513 if ($reached_points == $this->
object->getMaximumPoints()) {
517 if ($reached_points > 0) {
520 $template->setCurrentBlock(
"icon_ok");
521 $template->setVariable(
"ICON_OK", $correctness_icon);
522 $template->parseCurrentBlock();
526 if ($show_feedback) {
527 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
534 $template->setCurrentBlock(
"feedback");
535 $template->setVariable(
"FEEDBACK", $fb);
536 $template->parseCurrentBlock();
540 $questionoutput = $template->get();
542 if (strlen($feedback)) {
548 $solutiontemplate->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
549 $solutiontemplate->setVariable(
"FEEDBACK", $this->
object->prepareTextareaOutput($feedback,
true));
551 $solutiontemplate->setVariable(
"SOLUTION_OUTPUT", $questionoutput);
553 $solutionoutput = $solutiontemplate->get();
554 if (!$show_question_only) {
558 return $solutionoutput;
561 public function getPreview($show_question_only =
false, $showInlineFeedback =
false): string
564 $user_solution = array();
567 $user_solution = array_values($this->
getPreviewSession()->getParticipantsSolution());
571 foreach ($user_solution as $idx => $solution_value) {
572 if (strcmp($solution_value,
"") != 0) {
573 $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);
577 $imagepath = $this->
object->getImagePathWeb() .
$preview->getPreviewFilename($this->
object->getImagePath(), $this->
object->getImageFilename());
579 $user_solution = array();
580 $imagepath = $this->
object->getImagePathWeb() . $this->
object->getImageFilename();
584 $template =
new ilTemplate(
"tpl.il_as_qpl_imagemap_question_output.html",
true,
true,
"Modules/TestQuestionPool");
592 foreach ($this->
object->answers as $answer_id => $answer) {
593 $parameter =
"&selImage=$answer_id";
594 if (is_array($user_solution) && in_array($answer_id, $user_solution)) {
595 $parameter =
"&remImage=$answer_id";
599 $template->setCurrentBlock(
"imagemap_area_href");
600 $template->setVariable(
"HREF_AREA", $hrefArea . $parameter);
601 $template->parseCurrentBlock();
604 $template->setCurrentBlock(
"imagemap_area");
605 $template->setVariable(
"SHAPE", $answer->getArea());
606 $template->setVariable(
"COORDS", $answer->getCoords());
609 $template->parseCurrentBlock();
611 $template->setVariable(
"QUESTIONTEXT", $this->
object->getQuestionForHTMLOutput());
613 $template->setVariable(
"IMG_ALT", $this->
lng->txt(
"imagemap"));
614 $template->setVariable(
"IMG_TITLE", $this->
lng->txt(
"imagemap"));
615 $questionoutput = $template->get();
616 if (!$show_question_only) {
620 return $questionoutput;
624 public function getTestOutput($active_id, $pass, $is_postponed =
false, $use_post_solutions =
false, $show_feedback =
false): string
628 $solutions = $this->
object->getTestOutputSolutions($active_id, $pass);
631 $userSelection = array();
636 foreach ($solutions as $idx => $solution_value) {
637 if (strlen($solution_value[
"value1"])) {
638 $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);
639 $userSelection[$selectionIndex] = $solution_value[
"value1"];
641 $selectionIndex = $this->
object->getIsMultipleChoice() ? ++$selectionIndex : $selectionIndex;
647 $imagepath = $this->
object->getImagePathWeb() .
$preview->getPreviewFilename($this->
object->getImagePath(), $this->
object->getImageFilename());
649 $imagepath = $this->
object->getImagePathWeb() . $this->
object->getImageFilename();
653 $template =
new ilTemplate(
"tpl.il_as_qpl_imagemap_question_output.html",
true,
true,
"Modules/TestQuestionPool");
656 foreach ($this->
object->answers as $answer_id => $answer) {
657 $template->setCurrentBlock(
"imagemap_area");
658 $template->setVariable(
"HREF_AREA", $this->
buildAreaLinkTarget($userSelection, $answer_id));
659 $template->setVariable(
"SHAPE", $answer->getArea());
660 $template->setVariable(
"COORDS", $answer->getCoords());
663 $template->parseCurrentBlock();
664 if ($show_feedback) {
665 if (!$this->
object->getIsMultipleChoice() && count($userSelection) && current($userSelection) == $answer_id) {
666 $feedback = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
671 if (strlen($feedback)) {
672 $template->setCurrentBlock(
"feedback");
673 $template->setVariable(
"FEEDBACK", $feedback);
674 $template->parseCurrentBlock();
679 $template->setVariable(
"QUESTIONTEXT", $this->
object->getQuestionForHTMLOutput());
681 $template->setVariable(
"IMG_ALT", $this->
lng->txt(
"imagemap"));
682 $template->setVariable(
"IMG_TITLE", $this->
lng->txt(
"imagemap"));
683 $questionoutput = $template->get();
684 $pageoutput = $this->
outQuestionPage(
"", $is_postponed, $active_id, $questionoutput);
691 $href = $this->
ctrl->getLinkTargetByClass(
706 if ($this->
object->getTestPresentationConfig()->isSolutionInitiallyPrefilled()) {
707 $reuseSelection = array();
709 if ($areaIndex === null) {
710 $reuseSelection = $currentSelection;
711 } elseif ($this->
object->getIsMultipleChoice()) {
712 if (!in_array($areaIndex, $currentSelection)) {
713 $reuseSelection[] = $areaIndex;
716 foreach (array_diff($currentSelection, array($areaIndex)) as $otherSelectedArea) {
717 $reuseSelection[] = $otherSelectedArea;
720 $reuseSelection[] = $areaIndex;
724 $action =
'reuseSelection';
725 } elseif ($areaIndex !== null) {
726 if (!$this->
object->getIsMultipleChoice() || !in_array($areaIndex, $currentSelection)) {
727 $areaAction =
'selImage';
729 $areaAction =
'remImage';
732 $selection = $areaIndex;
733 $action = $areaAction;
738 return "{$action}={$selection}";
743 if (!$this->
object->feedbackOBJ->specificAnswerFeedbackExists()) {
747 $output =
'<table class="test_specific_feedback"><tbody>';
749 foreach ($this->
object->getAnswers() as $idx => $answer) {
750 $feedback = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
756 $output .=
"<tr><td>{$answer->getAnswerText()}</td><td>{$feedback}</td></tr>";
759 $output .=
'</tbody></table>';
761 return $this->
object->prepareTextareaOutput($output,
true);
794 $tpl =
new ilTemplate(
'tpl.il_as_aggregated_answers_table.html',
true,
true,
"Modules/TestQuestionPool");
804 foreach ($answeringFequencies as $answerIndex => $answeringFrequency) {
816 $answeringFequencies = array();
818 foreach ($existingAnswerOptions as $answerIndex => $answerOption) {
819 $answeringFequencies[$answerIndex] = 0;
822 foreach ($givenSolutionRows as $solutionRow) {
823 $answeringFequencies[$solutionRow[
'value1']]++;
826 return $answeringFequencies;
844 if (!count($this->
object->currentSolution)) {
849 $button->setCaption(
'use_previous_solution');
856 $tpl =
new ilTemplate(
'tpl.tst_question_additional_behaviour_checkbox.html',
true,
true,
'Modules/TestQuestionPool');
868 foreach ($this->
object->getAnswers() as $answerIndex => $ans) {
870 'answer' => $ans->getAnswerText(),
871 'frequency' => $agg[$answerIndex]
882 $image->setRequired(
true);
884 if (strlen($this->
object->getImageFilename())) {
885 $image->setImage($this->
object->getImagePathWeb() . $this->
object->getImageFilename());
886 $image->setValue($this->
object->getImageFilename());
887 $image->setAreas($this->
object->getAnswers());
888 $assessmentSetting =
new ilSetting(
"assessment");
890 $assessmentSetting->get(
"imap_line_color")
891 )) ?
"\"#" . $assessmentSetting->get(
"imap_line_color") .
"\"" :
"\"#FF0000\"";
893 $image->setImagePath($this->
object->getImagePath());
894 $image->setImagePathWeb($this->
object->getImagePathWeb());
906 foreach ($this->
object->getAnswers() as
$index => $answer) {
907 if ($this->
object->getIsMultipleChoice()) {
908 $answer->setPointsUnchecked((
float) $areas[$index]->getPointsUnchecked());
911 $answer->setPoints((
float) $areas[$index]->getPoints());
isTestPresentationContext()
getTestOutput($active_id, $pass, $is_postponed=false, $use_post_solutions=false, $show_feedback=false)
getPreviousSolutionConfirmationCheckboxHtml()
hasCorrectSolution($activeId, $passIndex)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
saveCorrectionsFormProperties(ilPropertyFormGUI $form)
renderAggregateView($answeringFequencies)
completeTestOutputFormAction($formAction, $active_id, $pass)
populateQuestionSpecificFormPart(\ilPropertyFormGUI $form)
static appendUrlParameterString(string $a_url, string $a_par, bool $xml_style=false)
generateCorrectnessIconsForCorrectness(int $correctness)
setCurrentBlock(string $blockname=self::DEFAULT_BLOCK)
Sets the template to the given block.
saveShape()
Saves a shape of the area editor.
getAnswersFrequency($relevantAnswers, $questionIndex)
buildBasicEditFormObject()
addBasicQuestionFormProperties(ilPropertyFormGUI $form)
getAggregatedAnswersView(array $relevant_answers)
Returns an html string containing a question specific representation of the answers so far given in t...
parseCurrentBlock(string $blockname=self::DEFAULT_BLOCK)
Parses the given block.
populateAnswerSpecificFormPart(\ilPropertyFormGUI $form)
writePostData(bool $always=false)
{}
const CSS_CLASS_FEEDBACK_CORRECT
ilGlobalPageTemplate $tpl
getPreview($show_question_only=false, $showInlineFeedback=false)
buildAreaLinkTarget($currentSelection, $areaIndex)
populateTaxonomyFormSection(ilPropertyFormGUI $form)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static implodeKeyValues(array $keyValues)
addQuestionFormCommandButtons(ilPropertyFormGUI $form)
buildSelectionParameter($currentSelection, $areaIndex=null)
writeQuestionGenericPostData()
aggregateAnswers($givenSolutionRows, $existingAnswerOptions)
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
writeAnswerSpecificPostData(ilPropertyFormGUI $form)
Extracts the answer specific values from $_POST and applies them to the data object.
writeQuestionSpecificPostData(ilPropertyFormGUI $form)
Extracts the question specific values from $_POST and applies them to the data object.
const MODE_MULTIPLE_CHOICE
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const CSS_CLASS_FEEDBACK_WRONG
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getSpecificFeedbackOutput(array $userSolution)
saveTaxonomyAssignments()
getILIASPage(string $html="")
Returns the ILIAS Page around a question.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
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)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static signFile(string $path_to_file)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
setVariable(string $variable, $value='')
Sets the given variable to the given value.
editQuestion(ilPropertyFormGUI $form=null)
getGenericFeedbackOutput(int $active_id, ?int $pass)