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 require_once
'./Modules/Test/classes/inc.AssessmentConstants.php';
38 include_once
"./Modules/TestQuestionPool/classes/class.assMatchingQuestion.php";
42 $this->
object->loadFromDb($id);
51 $hasErrors = (!$always) ? $this->
editQuestion(
true) :
false;
53 require_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
66 $this->
object->flushMatchingPairs();
67 $this->
object->flushTerms();
68 $this->
object->flushDefinitions();
71 require_once
'./Modules/TestQuestionPool/classes/class.assAnswerMatchingTerm.php';
72 foreach (
$_POST[
'terms'][
'answer'] as
$index => $answer) {
74 if (strlen($_FILES[
'terms'][
'name'][
'image'][
$index])) {
77 if ($this->object->setImageFile(
78 $_FILES[
'terms'][
'tmp_name'][
'image'][$index],
79 $this->object->getEncryptedFilename(
$name)
87 $this->
object->addTerm(
92 require_once
'./Modules/TestQuestionPool/classes/class.assAnswerMatchingDefinition.php';
93 foreach (
$_POST[
'definitions'][
'answer'] as
$index => $answer) {
95 if (strlen($_FILES[
'definitions'][
'name'][
'image'][
$index])) {
97 $name = $_FILES[
'definitions'][
'name'][
'image'][
$index];
98 if ($this->object->setImageFile(
99 $_FILES[
'definitions'][
'tmp_name'][
'image'][$index],
100 $this->object->getEncryptedFilename(
$name)
108 $this->
object->addDefinition(
114 if (is_array(
$_POST[
'pairs'][
'points'])) {
115 require_once
'./Modules/TestQuestionPool/classes/class.assAnswerMatchingPair.php';
116 foreach (
$_POST[
'pairs'][
'points'] as
$index => $points) {
119 $this->
object->addMatchingPair(
120 $this->object->getTermWithIdentifier($term_id),
121 $this->
object->getDefinitionWithIdentifier($definition_id),
130 if (!$this->object->getSelfAssessmentEditingMode()) {
131 $this->
object->setShuffle(
$_POST[
"shuffle"]);
133 $this->
object->setShuffle(1);
135 $this->
object->setThumbGeometry(
$_POST[
"thumb_geometry"]);
136 $this->
object->setMatchingMode(
$_POST[
'matching_mode']);
148 $position = key(
$_POST[
'cmd'][
'removeimageterms']);
149 $this->
object->removeTermImage($position);
162 $position = key(
$_POST[
'cmd'][
'removeimagedefinitions']);
163 $this->
object->removeDefinitionImage($position);
170 $position = key(
$_POST[
"cmd"][
"addterms"]);
171 $this->
object->insertTerm($position + 1);
178 $position = key(
$_POST[
"cmd"][
"removeterms"]);
179 $this->
object->deleteTerm($position);
186 $position = key(
$_POST[
"cmd"][
"adddefinitions"]);
187 $this->
object->insertDefinition($position + 1);
194 $position = key(
$_POST[
"cmd"][
"removedefinitions"]);
195 $this->
object->deleteDefinition($position);
202 $position = key(
$_POST[
"cmd"][
"addpairs"]);
203 $this->
object->insertMatchingPair($position + 1);
210 $position = key(
$_POST[
"cmd"][
"removepairs"]);
211 $this->
object->deleteMatchingPair($position);
220 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
222 $this->editForm = $form;
224 $form->setFormAction($this->ctrl->getFormAction($this));
226 $form->setMultipart(
true);
227 $form->setTableWidth(
"100%");
228 $form->setId(
"matching");
240 $form->setValuesByPost();
241 $errors = !$form->checkInput();
242 $form->setValuesByPost();
245 $terms = $form->getItemByPostVar(
'terms');
246 $terms->setAlert($this->lng->txt(
"msg_number_of_terms_too_low"));
255 $this->tpl->setVariable(
"QUESTION_DATA", $form->getHTML());
262 return $this->ctrl->getCmd() ==
'uploaddefinitions';
267 return $this->ctrl->getCmd() ==
'uploadterms';
286 $numDefinitions = count($form->
getItemByPostVar(
'definitions')->getValues());
288 if ($numTerms >= $numDefinitions) {
298 include_once
"./Modules/TestQuestionPool/classes/class.ilMatchingWizardInputGUI.php";
300 if ($this->object->getSelfAssessmentEditingMode()) {
304 $definitions->setRequired(
true);
305 $definitions->setQuestionObject($this->
object);
306 $definitions->setTextName($this->lng->txt(
'definition_text'));
307 $definitions->setImageName($this->lng->txt(
'definition_image'));
308 include_once
"./Modules/TestQuestionPool/classes/class.assAnswerMatchingDefinition.php";
309 if (!count($this->object->getDefinitions())) {
312 $definitionvalues = $this->
object->getDefinitions();
313 $definitions->setValues($definitionvalues);
315 $definitions->checkInput();
320 include_once
"./Modules/TestQuestionPool/classes/class.ilMatchingWizardInputGUI.php";
322 if ($this->object->getSelfAssessmentEditingMode()) {
325 $terms->setRequired(
true);
326 $terms->setQuestionObject($this->
object);
327 $terms->setTextName($this->lng->txt(
'term_text'));
328 $terms->setImageName($this->lng->txt(
'term_image'));
329 include_once
"./Modules/TestQuestionPool/classes/class.assAnswerMatchingTerm.php";
330 if (!count($this->object->getTerms())) {
333 $termvalues = $this->
object->getTerms();
334 $terms->setValues($termvalues);
336 $terms->checkInput();
341 include_once
"./Modules/TestQuestionPool/classes/class.ilMatchingPairWizardInputGUI.php";
344 $pairs->setTerms($this->object->getTerms());
345 $pairs->setDefinitions($this->object->getDefinitions());
346 include_once
"./Modules/TestQuestionPool/classes/class.assAnswerMatchingPair.php";
347 if (count($this->object->getMatchingPairs()) == 0) {
350 $pairs->setPairs($this->object->getMatchingPairs());
360 $hidden->setValue($matchingtype);
363 if (!$this->object->getSelfAssessmentEditingMode()) {
365 $shuffle =
new ilSelectInputGUI($this->lng->txt(
"shuffle_answers"),
"shuffle");
366 $shuffle_options = array(
367 0 => $this->lng->txt(
"no"),
368 1 => $this->lng->txt(
"matching_shuffle_terms_definitions"),
369 2 => $this->lng->txt(
"matching_shuffle_terms"),
370 3 => $this->lng->txt(
"matching_shuffle_definitions")
372 $shuffle->setOptions($shuffle_options);
373 $shuffle->setValue($this->object->getShuffle() != null ? $this->
object->getShuffle() : 1);
374 $shuffle->setRequired(
false);
377 $geometry =
new ilNumberInputGUI($this->lng->txt(
"thumb_geometry"),
"thumb_geometry");
378 $geometry->
setValue($this->object->getThumbGeometry());
379 $geometry->setRequired(
true);
380 $geometry->setMaxLength(6);
381 $geometry->setMinValue(20);
382 $geometry->setSize(6);
383 $geometry->setInfo($this->lng->txt(
"thumb_geometry_info"));
388 $mode =
new ilRadioGroupInputGUI($this->lng->txt(
'qpl_qst_inp_matching_mode'),
'matching_mode');
392 $this->lng->txt(
'qpl_qst_inp_matching_mode_one_on_one'),
395 $mode->addOption($modeONEonONE);
398 $this->lng->txt(
'qpl_qst_inp_matching_mode_all_on_all'),
401 $mode->addOption($modeALLonALL);
403 $mode->
setValue($this->object->getMatchingMode());
434 $graphicalOutput =
false,
435 $result_output =
false,
436 $show_question_only =
true,
437 $show_feedback =
false,
438 $show_correct_solution =
false,
439 $show_manual_scoring =
false,
440 $show_question_text =
true 443 include_once
"./Services/UICore/classes/class.ilTemplate.php";
444 $template =
new ilTemplate(
"tpl.il_as_qpl_matching_output_solution.html",
true,
true,
"Modules/TestQuestionPool");
445 $solutiontemplate =
new ilTemplate(
"tpl.il_as_tst_solution_output.html",
true,
true,
"Modules/TestQuestionPool");
447 $solutions = array();
448 if (($active_id > 0) && (!$show_correct_solution)) {
449 include_once
"./Modules/Test/classes/class.ilObjTest.php";
451 $solution_script .=
"";
453 foreach ($this->object->getMaximumScoringMatchingPairs() as $pair) {
454 $solutions[] = array(
455 "value1" => $pair->term->identifier,
456 "value2" => $pair->definition->identifier,
457 'points' => $pair->points
464 foreach ($solutions as $solution) {
465 $definition = $this->
object->getDefinitionWithIdentifier($solution[
'value2']);
466 $term = $this->
object->getTermWithIdentifier($solution[
'value1']);
467 $points = $solution[
'points'];
469 if (is_object($definition)) {
470 if (strlen($definition->picture)) {
471 if (strlen($definition->text)) {
472 $template->setCurrentBlock(
'definition_image_text');
474 $template->parseCurrentBlock();
478 $this->object->getImagePathWeb() . $this->
object->getThumbPrefix() . $definition->picture
481 $template->setCurrentBlock(
'definition_image');
482 $template->setVariable(
'ANSWER_IMAGE_URL', $answerImageSrc);
485 $template->setVariable(
'URL_PREVIEW', $this->object->getImagePathWeb() . $definition->picture);
486 $template->setVariable(
"TEXT_PREVIEW", $this->lng->txt(
'preview'));
488 $template->parseCurrentBlock();
490 $template->setCurrentBlock(
'definition_text');
491 $template->setVariable(
"DEFINITION", $this->object->prepareTextareaOutput($definition->text,
true));
492 $template->parseCurrentBlock();
495 if (is_object($term)) {
496 if (strlen($term->picture)) {
497 if (strlen($term->text)) {
498 $template->setCurrentBlock(
'term_image_text');
500 $template->parseCurrentBlock();
504 $this->object->getImagePathWeb() . $this->
object->getThumbPrefix() . $term->picture
507 $template->setCurrentBlock(
'term_image');
508 $template->setVariable(
'ANSWER_IMAGE_URL', $answerImageSrc);
511 $template->setVariable(
'URL_PREVIEW', $this->object->getImagePathWeb() . $term->picture);
512 $template->setVariable(
"TEXT_PREVIEW", $this->lng->txt(
'preview'));
514 $template->parseCurrentBlock();
516 $template->setCurrentBlock(
'term_text');
517 $template->setVariable(
"TERM", $this->object->prepareTextareaOutput($term->text,
true));
518 $template->parseCurrentBlock();
522 if (($active_id > 0) && (!$show_correct_solution)) {
523 if ($graphicalOutput) {
526 foreach ($this->object->getMatchingPairs() as $pair) {
533 $template->setCurrentBlock(
"icon_ok");
535 $template->setVariable(
"TEXT_OK", $this->lng->txt(
"answer_is_right"));
536 $template->parseCurrentBlock();
538 $template->setCurrentBlock(
"icon_ok");
540 $template->setVariable(
"TEXT_NOT_OK", $this->lng->txt(
"answer_is_wrong"));
541 $template->parseCurrentBlock();
546 if ($result_output) {
547 $resulttext = ($points == 1) ?
"(%s " . $this->lng->txt(
"point") .
")" :
"(%s " . $this->lng->txt(
"points") .
")";
548 $template->setCurrentBlock(
"result_output");
549 $template->setVariable(
"RESULT_OUTPUT", sprintf($resulttext, $points));
550 $template->parseCurrentBlock();
553 $template->setCurrentBlock(
"row");
554 $template->setVariable(
"TEXT_MATCHES", $this->lng->txt(
"matches"));
555 $template->parseCurrentBlock();
558 $questiontext = $this->
object->getQuestion();
559 if ($show_question_text ==
true) {
560 $template->setVariable(
"QUESTIONTEXT", $this->object->prepareTextareaOutput($questiontext,
true));
563 $questionoutput = $template->get();
566 if ($show_feedback) {
569 $feedback .= strlen($fb) ? $fb :
'';
573 $feedback .= strlen($fb) ? $fb :
'';
575 if (strlen($feedback)) {
581 $solutiontemplate->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
582 $solutiontemplate->setVariable(
"FEEDBACK", $this->object->prepareTextareaOutput($feedback,
true));
585 $solutiontemplate->setVariable(
"SOLUTION_OUTPUT", $questionoutput);
587 $solutionoutput = $solutiontemplate->get();
588 if (!$show_question_only) {
592 return $solutionoutput;
595 public function getPreview($show_question_only =
false, $showInlineFeedback =
false)
600 if ($DIC[
'ilBrowser']->isMobile() || $DIC[
'ilBrowser']->isIpad()) {
601 require_once
'Services/jQuery/classes/class.iljQueryUtil.php';
604 $this->tpl->addJavaScript(
'./libs/bower/bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.min.js');
606 $this->tpl->addJavaScript(
'Modules/TestQuestionPool/js/ilMatchingQuestion.js');
609 $template =
new ilTemplate(
"tpl.il_as_qpl_matching_output.html",
true,
true,
"Modules/TestQuestionPool");
611 foreach ($solutions as $defId => $terms) {
612 foreach ($terms as $termId) {
613 $template->setCurrentBlock(
"matching_data");
614 $template->setVariable(
"DEFINITION_ID", $defId);
615 $template->setVariable(
"TERM_ID", $termId);
616 $template->parseCurrentBlock();
621 $terms = $this->
object->getTerms();
622 $definitions = $this->
object->getDefinitions();
623 switch ($this->object->getShuffle()) {
625 $seed = $this->
object->getShuffler()->getSeed();
626 $this->
object->getShuffler()->setSeed($seed .
'1');
627 $terms = $this->
object->getShuffler()->shuffle($terms);
628 $this->
object->getShuffler()->setSeed($seed .
'2');
629 $definitions = $this->
object->getShuffler()->shuffle($definitions);
630 $this->
object->getShuffler()->setSeed($seed);
633 $terms = $this->
object->getShuffler()->shuffle($terms);
636 $definitions = $this->
object->getShuffler()->shuffle($definitions);
642 foreach ($definitions as $definition) {
643 if (strlen($definition->picture)) {
644 $template->setCurrentBlock(
"definition_picture");
645 $template->setVariable(
"DEFINITION_ID", $definition->identifier);
646 $template->setVariable(
"IMAGE_HREF", $this->object->getImagePathWeb() . $definition->picture);
647 $thumbweb = $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $definition->picture;
648 $thumb = $this->
object->getImagePath() . $this->
object->getThumbPrefix() . $definition->picture;
649 if (!@file_exists($thumb)) {
650 $this->
object->rebuildThumbnails();
652 $template->setVariable(
"THUMBNAIL_HREF", $thumbweb);
653 $template->setVariable(
"THUMB_ALT", $this->lng->txt(
"image"));
654 $template->setVariable(
"THUMB_TITLE", $this->lng->txt(
"image"));
655 $template->setVariable(
"TEXT_DEFINITION", (strlen($definition->text)) ? $this->object->prepareTextareaOutput($definition->text,
true,
true) :
'');
656 $template->setVariable(
"TEXT_PREVIEW", $this->lng->txt(
'preview'));
658 $template->parseCurrentBlock();
660 $template->setCurrentBlock(
"definition_text");
661 $template->setVariable(
"DEFINITION", $this->object->prepareTextareaOutput($definition->text,
true,
true));
662 $template->parseCurrentBlock();
665 $template->setCurrentBlock(
"droparea");
666 $template->setVariable(
"ID_DROPAREA", $definition->identifier);
667 $template->setVariable(
"QUESTION_ID", $this->object->getId());
668 $template->parseCurrentBlock();
670 $template->setCurrentBlock(
"definition_data");
671 $template->setVariable(
"DEFINITION_ID", $definition->identifier);
672 $template->parseCurrentBlock();
677 foreach ($terms as $term) {
678 if (strlen($term->picture)) {
679 $template->setCurrentBlock(
"term_picture");
680 $template->setVariable(
"TERM_ID", $term->identifier);
681 $template->setVariable(
"IMAGE_HREF", $this->object->getImagePathWeb() . $term->picture);
682 $thumbweb = $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $term->picture;
683 $thumb = $this->
object->getImagePath() . $this->
object->getThumbPrefix() . $term->picture;
684 if (!@file_exists($thumb)) {
685 $this->
object->rebuildThumbnails();
687 $template->setVariable(
"THUMBNAIL_HREF", $thumbweb);
688 $template->setVariable(
"THUMB_ALT", $this->lng->txt(
"image"));
689 $template->setVariable(
"THUMB_TITLE", $this->lng->txt(
"image"));
690 $template->setVariable(
"TEXT_PREVIEW", $this->lng->txt(
'preview'));
691 $template->setVariable(
"TEXT_TERM", (strlen($term->text)) ? $this->object->prepareTextareaOutput($term->text,
true,
true) :
'');
693 $template->parseCurrentBlock();
695 $template->setCurrentBlock(
"term_text");
696 $template->setVariable(
"TERM_TEXT", $this->object->prepareTextareaOutput($term->text,
true,
true));
697 $template->parseCurrentBlock();
699 $template->setCurrentBlock(
"draggable");
700 $template->setVariable(
"ID_DRAGGABLE", $term->identifier);
701 $template->parseCurrentBlock();
703 $template->setCurrentBlock(
"term_data");
704 $template->setVariable(
"TERM_ID", $term->identifier);
705 $template->parseCurrentBlock();
708 $template->setVariable(
'MATCHING_MODE', $this->object->getMatchingMode());
710 $template->setVariable(
"RESET_BUTTON", $this->lng->txt(
"reset_terms"));
712 $template->setVariable(
"QUESTIONTEXT", $this->object->prepareTextareaOutput($this->object->getQuestion(),
true));
714 $questionoutput = $template->get();
716 if (!$show_question_only) {
721 return $questionoutput;
729 protected function sortDefinitionsBySolution(array $solution, array $definitions)
732 $handled_defintions = array();
733 foreach ($solution as $solution_values) {
734 $id = $solution_values[
'value2'];
735 if (!isset($handled_defintions[$id])) {
736 $neworder[] = $this->
object->getDefinitionWithIdentifier($id);
737 $handled_defintions[$id] = $id;
741 foreach ($definitions as $definition) {
745 if (!isset($handled_defintions[$definition->identifier])) {
746 $neworder[] = $definition;
759 if ($DIC[
'ilBrowser']->isMobile() || $DIC[
'ilBrowser']->isIpad()) {
760 $files[] =
'./libs/bower/bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.min.js';
763 $files[] =
'Modules/TestQuestionPool/js/ilMatchingQuestion.js';
769 public function getTestOutput($active_id,
$pass, $is_postponed =
false, $user_post_solution =
false, $inlineFeedback =
false)
773 if ($DIC[
'ilBrowser']->isMobile() || $DIC[
'ilBrowser']->isIpad()) {
774 require_once
'Services/jQuery/classes/class.iljQueryUtil.php';
777 $this->tpl->addJavaScript(
'./libs/bower/bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.min.js');
779 $this->tpl->addJavaScript(
'Modules/TestQuestionPool/js/ilMatchingQuestion.js');
782 $template =
new ilTemplate(
"tpl.il_as_qpl_matching_output.html",
true,
true,
"Modules/TestQuestionPool");
787 #include_once "./Modules/Test/classes/class.ilObjTest.php"; 788 #if (!ilObjTest::_getUsePreviousAnswers($active_id, true)) 790 # if (is_null($pass)) $pass = ilObjTest::_getPass($active_id); 793 if (is_array($user_post_solution)) {
794 $solutions = array();
795 foreach ($user_post_solution[
'matching'][$this->object->getId()] as $definition => $term) {
796 array_push($solutions, array(
"value1" => $term,
"value2" => $definition));
800 $solutions = $this->
object->getTestOutputSolutions($active_id,
$pass);
805 foreach ($solutions as $idx => $solution_value) {
806 if (($solution_value[
"value2"] > -1) && ($solution_value[
"value1"] > -1)) {
807 $template->setCurrentBlock(
"matching_data");
808 $template->setVariable(
"TERM_ID", $solution_value[
"value1"]);
809 $template->setVariable(
"DEFINITION_ID", $solution_value[
"value2"]);
810 $template->parseCurrentBlock();
817 $terms = $this->
object->getTerms();
818 $definitions = $this->
object->getDefinitions();
819 switch ($this->object->getShuffle()) {
821 $seed = $this->
object->getShuffler()->getSeed();
822 $this->
object->getShuffler()->setSeed($seed .
'1');
823 $terms = $this->
object->getShuffler()->shuffle($terms);
824 if (count($solutions)) {
825 $definitions = $this->sortDefinitionsBySolution($solutions, $definitions);
827 $this->
object->getShuffler()->setSeed($seed .
'2');
828 $definitions = $this->
object->getShuffler()->shuffle($definitions);
830 $this->
object->getShuffler()->setSeed($seed);
833 $terms = $this->
object->getShuffler()->shuffle($terms);
836 if (count($solutions)) {
837 $definitions = $this->sortDefinitionsBySolution($solutions, $definitions);
839 $definitions = $this->
object->getShuffler()->shuffle($definitions);
846 foreach ($definitions as $definition) {
847 if (strlen($definition->picture)) {
848 $template->setCurrentBlock(
"definition_picture");
849 $template->setVariable(
"DEFINITION_ID", $definition->identifier);
850 $template->setVariable(
"IMAGE_HREF", $this->object->getImagePathWeb() . $definition->picture);
851 $thumbweb = $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $definition->picture;
852 $thumb = $this->
object->getImagePath() . $this->
object->getThumbPrefix() . $definition->picture;
853 if (!@file_exists($thumb)) {
854 $this->
object->rebuildThumbnails();
856 $template->setVariable(
"THUMBNAIL_HREF", $thumbweb);
857 $template->setVariable(
"THUMB_ALT", $this->lng->txt(
"image"));
858 $template->setVariable(
"THUMB_TITLE", $this->lng->txt(
"image"));
859 $template->setVariable(
"TEXT_DEFINITION", (strlen($definition->text)) ? $this->object->prepareTextareaOutput($definition->text,
true,
true) :
'');
860 $template->setVariable(
"TEXT_PREVIEW", $this->lng->txt(
'preview'));
862 $template->parseCurrentBlock();
864 $template->setCurrentBlock(
"definition_text");
865 $template->setVariable(
"DEFINITION", $this->object->prepareTextareaOutput($definition->text,
true,
true));
866 $template->parseCurrentBlock();
869 $template->setCurrentBlock(
"droparea");
870 $template->setVariable(
"ID_DROPAREA", $definition->identifier);
871 $template->setVariable(
"QUESTION_ID", $this->object->getId());
872 $template->parseCurrentBlock();
874 $template->setCurrentBlock(
"definition_data");
875 $template->setVariable(
"DEFINITION_ID", $definition->identifier);
876 $template->parseCurrentBlock();
881 foreach ($terms as $term) {
882 if (strlen($term->picture)) {
883 $template->setCurrentBlock(
"term_picture");
884 $template->setVariable(
"TERM_ID", $term->identifier);
885 $template->setVariable(
"IMAGE_HREF", $this->object->getImagePathWeb() . $term->picture);
886 $thumbweb = $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $term->picture;
887 $thumb = $this->
object->getImagePath() . $this->
object->getThumbPrefix() . $term->picture;
888 if (!@file_exists($thumb)) {
889 $this->
object->rebuildThumbnails();
891 $template->setVariable(
"THUMBNAIL_HREF", $thumbweb);
892 $template->setVariable(
"THUMB_ALT", $this->lng->txt(
"image"));
893 $template->setVariable(
"THUMB_TITLE", $this->lng->txt(
"image"));
894 $template->setVariable(
"TEXT_PREVIEW", $this->lng->txt(
'preview'));
895 $template->setVariable(
"TEXT_TERM", (strlen($term->text)) ? $this->object->prepareTextareaOutput($term->text,
true,
true) :
'');
897 $template->parseCurrentBlock();
899 $template->setCurrentBlock(
"term_text");
900 $template->setVariable(
"TERM_TEXT", $this->object->prepareTextareaOutput($term->text,
true,
true));
901 $template->parseCurrentBlock();
903 $template->setCurrentBlock(
"draggable");
904 $template->setVariable(
"ID_DRAGGABLE", $term->identifier);
905 $template->parseCurrentBlock();
907 $template->setCurrentBlock(
'term_data');
908 $template->setVariable(
'TERM_ID', $term->identifier);
909 $template->parseCurrentBlock();
912 $template->setVariable(
'MATCHING_MODE', $this->object->getMatchingMode());
914 $template->setVariable(
"RESET_BUTTON", $this->lng->txt(
"reset_terms"));
916 $template->setVariable(
"QUESTIONTEXT", $this->object->prepareTextareaOutput($this->object->getQuestion(),
true));
918 return $this->
outQuestionPage(
"", $is_postponed, $active_id, $template->get());
942 $rbacsystem = $DIC[
'rbacsystem'];
943 $ilTabs = $DIC[
'ilTabs'];
945 $ilTabs->clearTargets();
947 $this->ctrl->setParameterByClass(
"ilAssQuestionPageGUI",
"q_id",
$_GET[
"q_id"]);
948 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
949 $q_type = $this->
object->getQuestionType();
951 if (strlen($q_type)) {
952 $classname = $q_type .
"GUI";
953 $this->ctrl->setParameterByClass(strtolower($classname),
"sel_question_types", $q_type);
954 $this->ctrl->setParameterByClass(strtolower($classname),
"q_id",
$_GET[
"q_id"]);
958 if ($rbacsystem->checkAccess(
'write',
$_GET[
"ref_id"])) {
962 $this->ctrl->getLinkTargetByClass(
"ilAssQuestionPageGUI",
"edit"),
963 array(
"edit",
"insert",
"exec_pg"),
973 $force_active =
false;
974 if ($rbacsystem->checkAccess(
'write',
$_GET[
"ref_id"])) {
977 $url = $this->ctrl->getLinkTargetByClass($classname,
"editQuestion");
983 array(
"editQuestion",
"save",
"saveEdit",
"removeimageterms",
"uploadterms",
"removeimagedefinitions",
"uploaddefinitions",
984 "addpairs",
"removepairs",
"addterms",
"removeterms",
"adddefinitions",
"removedefinitions",
"originalSyncForm"),
1001 if (
$_GET[
"q_id"]) {
1004 $this->ctrl->getLinkTargetByClass($classname,
"assessment"),
1005 array(
"assessment"),
1016 $matches = array_values($this->object->matchingpairs);
1018 if (!$this->object->feedbackOBJ->specificAnswerFeedbackExists()) {
1022 $feedback =
'<table class="test_specific_feedback"><tbody>';
1024 foreach ($matches as $idx => $ans) {
1025 if (!isset($userSolution[$ans->definition->identifier])) {
1029 if (!is_array($userSolution[$ans->definition->identifier])) {
1033 if (!in_array($ans->term->identifier, $userSolution[$ans->definition->identifier])) {
1037 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
1038 $this->object->getId(),
1042 $feedback .=
'<tr><td>"' . $ans->definition->text .
'" ' . $this->lng->txt(
"matches") .
' "';
1043 $feedback .= $ans->term->text .
'"</td><td>';
1044 $feedback .= $fb .
'</td> </tr>';
1047 $feedback .=
'</tbody></table>';
1048 return $this->
object->prepareTextareaOutput($feedback,
true);
1094 if (!($pair->points > 0)) {
1098 if (!is_object($term)) {
1102 if ($pair->definition->identifier != $definition->identifier) {
1106 if ($pair->term->identifier != $term->identifier) {
1115 $thumbweb = $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $picture;
1116 return '<img src="' . $thumbweb .
'" alt="' . $picture .
'" title="' . $picture .
'"/>';
1123 if (strlen($elem->text)) {
1124 $html .= $elem->text;
1127 if (strlen($elem->picture)) {
1136 $answersByActiveAndPass = array();
1138 foreach ($relevantAnswers as $row) {
1139 $key = $row[
'active_fi'] .
':' . $row[
'pass'];
1141 if (!isset($answersByActiveAndPass[$key])) {
1142 $answersByActiveAndPass[$key] = array();
1145 $answersByActiveAndPass[$key][$row[
'value1']] = $row[
'value2'];
1150 foreach ($answersByActiveAndPass as $key => $matchingPairs) {
1151 foreach ($matchingPairs as $termId => $defId) {
1152 $hash = md5($termId .
':' . $defId);
1154 if (!isset($answers[$hash])) {
1156 $this->object->getTermWithIdentifier($termId)
1160 $this->object->getDefinitionWithIdentifier($defId)
1163 $answers[$hash] = array(
1164 'answer' => $termHtml . $defHtml,
1165 'term' => $termHtml,
1166 'definition' => $defHtml,
1171 $answers[$hash][
'frequency']++;
1187 require_once
'Modules/TestQuestionPool/classes/tables/class.ilMatchingQuestionAnswerFreqStatTableGUI.php';
1190 $table->setQuestionIndex($questionIndex);
1192 $table->initColumns();
1199 require_once
'Modules/TestQuestionPool/classes/forms/class.ilAssMatchingPairCorrectionsInputGUI.php';
1202 $pairs->setTerms($this->object->getTerms());
1203 $pairs->setDefinitions($this->object->getDefinitions());
1204 $pairs->setPairs($this->object->getMatchingPairs());
1215 foreach ($this->object->getMatchingPairs() as $idx => $matchingPair) {
1216 $matchingPair->points = (float) $pairs[$idx]->points;
isTestPresentationContext()
Class for matching question terms.
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
hasCorrectSolution($activeId, $passIndex)
addTab_QuestionPreview(ilTabsGUI $tabsGUI)
writePostData($always=false)
{}
This class represents an option in a radio group.
Class for matching question pairs.
addBasicQuestionFormProperties($form)
Add basic question form properties: assessment: title, author, description, question, working time.
addTab_QuestionHints(ilTabsGUI $tabs)
adds the hints tab to ilTabsGUI
saveCorrectionsFormProperties(ilPropertyFormGUI $form)
const MATCHING_MODE_N_ON_N
getAnswerStatisticImageHtml($picture)
static getStyleSheetLocation($mode="output", $a_css_name="", $a_css_location="")
get full style sheet file name (path inclusive) of current user
const MATCHING_MODE_1_ON_1
getTestOutput($active_id, $pass, $is_postponed=false, $user_post_solution=false, $inlineFeedback=false)
supportsIntermediateSolutionOutput()
Question type specific support of intermediate solution output The function getSolutionOutput respect...
isValidTermAndDefinitionAmount(ilPropertyFormGUI $form)
for mode 1:1 terms count must not be less than definitions count for mode n:n this limitation is canc...
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
getQuestionTemplate()
get question template
const CSS_CLASS_FEEDBACK_CORRECT
Matching question GUI representation.
populateTaxonomyFormSection(ilPropertyFormGUI $form)
getUseIntermediateSolution()
Get if intermediate solution should be used for solution output.
getPresentationJavascripts()
Class for matching questions.
writeAnswerSpecificPostData(ilPropertyFormGUI $form)
Extracts the answer specific values from $_POST and applies them to the data object.
checkInput()
check input fields
populateQuestionSpecificFormPart(\ilPropertyFormGUI $form)
setValue($a_value)
Set Value.
writeQuestionGenericPostData()
getAnswerStatisticMatchingElemHtml($elem)
__construct($id=-1)
assMatchingQuestionGUI constructor
getAggregatedAnswersView($relevant_answers)
Returns an html string containing a question specific representation of the answers so far given in t...
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)
writeQuestionSpecificPostData(ilPropertyFormGUI $form)
Extracts the question specific values from $_POST and applies them to the data object.
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.
isCorrectMatching($pair, $definition, $term)
getAnswerFrequencyTableGUI($parentGui, $parentCmd, $relevantAnswers, $questionIndex)
addTab_QuestionFeedback(ilTabsGUI $tabs)
adds the feedback tab to ilTabsGUI
const CSS_CLASS_FEEDBACK_WRONG
static signFile($path_to_file)
getPreview($show_question_only=false, $showInlineFeedback=false)
Basic GUI class for assessment questions.
setErrorMessage($errormessage)
populateAnswerSpecificFormPart(\ilPropertyFormGUI $form)
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
setQuestionTabs()
Sets the ILIAS tabs for this question type.
static initjQueryUI($a_tpl=null)
inits and adds the jQuery-UI JS-File to the global template (see included_components.txt for included components)
saveTaxonomyAssignments()
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
output question page
static initjQuery(ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
__construct(Container $dic, ilPlugin $plugin)
getAnswersFrequency($relevantAnswers, $questionIndex)
addBackTab(ilTabsGUI $ilTabs)
editQuestion($checkonly=false)
Class for matching question definitions.
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...
getGenericFeedbackOutput($active_id, $pass)
Returns the answer specific feedback for the question.
Interface ilGuiQuestionScoringAdjustable.
getSpecificFeedbackOutput($userSolution)
addTab_SuggestedSolution(ilTabsGUI $tabs, $classname)
addQuestionFormCommandButtons($form)
Add the command buttons of a question properties form.