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';
37 parent::__construct();
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();
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");
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);
424 $graphicalOutput =
false,
425 $result_output =
false,
426 $show_question_only =
true,
427 $show_feedback =
false,
428 $show_correct_solution =
false,
429 $show_manual_scoring =
false,
430 $show_question_text =
true 433 include_once
"./Services/UICore/classes/class.ilTemplate.php";
434 $template =
new ilTemplate(
"tpl.il_as_qpl_matching_output_solution.html",
true,
true,
"Modules/TestQuestionPool");
435 $solutiontemplate =
new ilTemplate(
"tpl.il_as_tst_solution_output.html",
true,
true,
"Modules/TestQuestionPool");
437 $solutions =
array();
438 if (($active_id > 0) && (!$show_correct_solution)) {
439 include_once
"./Modules/Test/classes/class.ilObjTest.php";
440 $solutions =&$this->
object->getSolutionValues($active_id,
$pass);
441 $solution_script .=
"";
443 foreach ($this->
object->getMaximumScoringMatchingPairs() as $pair) {
444 $solutions[] =
array(
445 "value1" => $pair->term->identifier,
446 "value2" => $pair->definition->identifier,
447 'points' => $pair->points
454 foreach ($solutions as $solution) {
455 $definition = $this->
object->getDefinitionWithIdentifier($solution[
'value2']);
456 $term = $this->
object->getTermWithIdentifier($solution[
'value1']);
457 $points = $solution[
'points'];
459 if (is_object($definition)) {
460 if (strlen($definition->picture)) {
461 if (strlen($definition->text)) {
462 $template->setCurrentBlock(
'definition_image_text');
468 $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $definition->picture
471 $template->setCurrentBlock(
'definition_image');
472 $template->setVariable(
'ANSWER_IMAGE_URL', $answerImageSrc);
475 $template->setVariable(
'URL_PREVIEW', $this->
object->getImagePathWeb() . $definition->picture);
476 $template->setVariable(
"TEXT_PREVIEW", $this->lng->txt(
'preview'));
480 $template->setCurrentBlock(
'definition_text');
481 $template->setVariable(
"DEFINITION", $this->
object->prepareTextareaOutput($definition->text,
true));
485 if (is_object($term)) {
486 if (strlen($term->picture)) {
487 if (strlen($term->text)) {
488 $template->setCurrentBlock(
'term_image_text');
494 $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $term->picture
497 $template->setCurrentBlock(
'term_image');
498 $template->setVariable(
'ANSWER_IMAGE_URL', $answerImageSrc);
501 $template->setVariable(
'URL_PREVIEW', $this->
object->getImagePathWeb() . $term->picture);
502 $template->setVariable(
"TEXT_PREVIEW", $this->lng->txt(
'preview'));
507 $template->setVariable(
"TERM", $this->
object->prepareTextareaOutput($term->text,
true));
512 if (($active_id > 0) && (!$show_correct_solution)) {
513 if ($graphicalOutput) {
516 foreach ($this->
object->getMatchingPairs() as $pair) {
525 $template->setVariable(
"TEXT_OK", $this->lng->txt(
"answer_is_right"));
530 $template->setVariable(
"TEXT_NOT_OK", $this->lng->txt(
"answer_is_wrong"));
536 if ($result_output) {
537 $resulttext = ($points == 1) ?
"(%s " . $this->lng->txt(
"point") .
")" :
"(%s " . $this->lng->txt(
"points") .
")";
538 $template->setCurrentBlock(
"result_output");
539 $template->setVariable(
"RESULT_OUTPUT", sprintf($resulttext, $points));
544 $template->setVariable(
"TEXT_MATCHES", $this->lng->txt(
"matches"));
548 $questiontext = $this->
object->getQuestion();
549 if ($show_question_text==
true) {
550 $template->setVariable(
"QUESTIONTEXT", $this->
object->prepareTextareaOutput($questiontext,
true));
556 if ($show_feedback) {
559 $feedback .= strlen($fb) ? $fb :
'';
563 $feedback .= strlen($fb) ? $fb :
'';
565 if (strlen($feedback)) {
571 $solutiontemplate->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
572 $solutiontemplate->setVariable(
"FEEDBACK", $this->
object->prepareTextareaOutput($feedback,
true));
575 $solutiontemplate->setVariable(
"SOLUTION_OUTPUT", $questionoutput);
577 $solutionoutput = $solutiontemplate->get();
578 if (!$show_question_only) {
582 return $solutionoutput;
585 public function getPreview($show_question_only =
false, $showInlineFeedback =
false)
590 require_once
'Services/jQuery/classes/class.iljQueryUtil.php';
593 $this->tpl->addJavaScript(
'./libs/bower/bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.min.js');
595 $this->tpl->addJavaScript(
'Modules/TestQuestionPool/js/jquery-ui-1-10-3-fixed.js');
597 $this->tpl->addJavaScript(
'Modules/TestQuestionPool/js/ilMatchingQuestion.js');
600 $template =
new ilTemplate(
"tpl.il_as_qpl_matching_output.html",
true,
true,
"Modules/TestQuestionPool");
602 foreach ($solutions as $defId => $terms) {
603 foreach ($terms as $termId) {
604 $template->setCurrentBlock(
"matching_data");
605 $template->setVariable(
"DEFINITION_ID", $defId);
606 $template->setVariable(
"TERM_ID", $termId);
612 $terms = $this->
object->getTerms();
613 $definitions = $this->
object->getDefinitions();
614 switch ($this->
object->getShuffle()) {
616 $seed = $this->
object->getShuffler()->getSeed();
617 $this->
object->getShuffler()->setSeed($seed .
'1');
618 $terms = $this->
object->getShuffler()->shuffle($terms);
619 $this->
object->getShuffler()->setSeed($seed .
'2');
620 $definitions = $this->
object->getShuffler()->shuffle($definitions);
621 $this->
object->getShuffler()->setSeed($seed);
624 $terms = $this->
object->getShuffler()->shuffle($terms);
627 $definitions = $this->
object->getShuffler()->shuffle($definitions);
633 foreach ($definitions as $definition) {
634 if (strlen($definition->picture)) {
635 $template->setCurrentBlock(
"definition_picture");
636 $template->setVariable(
"DEFINITION_ID", $definition->identifier);
637 $template->setVariable(
"IMAGE_HREF", $this->
object->getImagePathWeb() . $definition->picture);
638 $thumbweb = $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $definition->picture;
639 $thumb = $this->
object->getImagePath() . $this->
object->getThumbPrefix() . $definition->picture;
640 if (!@file_exists($thumb)) {
641 $this->
object->rebuildThumbnails();
643 $template->setVariable(
"THUMBNAIL_HREF", $thumbweb);
644 $template->setVariable(
"THUMB_ALT", $this->lng->txt(
"image"));
645 $template->setVariable(
"THUMB_TITLE", $this->lng->txt(
"image"));
646 $template->setVariable(
"TEXT_DEFINITION", (strlen($definition->text)) ? $this->object->prepareTextareaOutput($definition->text,
true,
true) :
'');
647 $template->setVariable(
"TEXT_PREVIEW", $this->lng->txt(
'preview'));
651 $template->setCurrentBlock(
"definition_text");
652 $template->setVariable(
"DEFINITION", $this->
object->prepareTextareaOutput($definition->text,
true,
true));
657 $template->setVariable(
"ID_DROPAREA", $definition->identifier);
661 $template->setCurrentBlock(
"definition_data");
662 $template->setVariable(
"DEFINITION_ID", $definition->identifier);
668 foreach ($terms as $term) {
669 if (strlen($term->picture)) {
670 $template->setCurrentBlock(
"term_picture");
671 $template->setVariable(
"TERM_ID", $term->identifier);
672 $template->setVariable(
"IMAGE_HREF", $this->
object->getImagePathWeb() . $term->picture);
673 $thumbweb = $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $term->picture;
674 $thumb = $this->
object->getImagePath() . $this->
object->getThumbPrefix() . $term->picture;
675 if (!@file_exists($thumb)) {
676 $this->
object->rebuildThumbnails();
678 $template->setVariable(
"THUMBNAIL_HREF", $thumbweb);
679 $template->setVariable(
"THUMB_ALT", $this->lng->txt(
"image"));
680 $template->setVariable(
"THUMB_TITLE", $this->lng->txt(
"image"));
681 $template->setVariable(
"TEXT_PREVIEW", $this->lng->txt(
'preview'));
682 $template->setVariable(
"TEXT_TERM", (strlen($term->text)) ? $this->object->prepareTextareaOutput($term->text,
true,
true) :
'');
687 $template->setVariable(
"TERM_TEXT", $this->
object->prepareTextareaOutput($term->text,
true,
true));
691 $template->setVariable(
"ID_DRAGGABLE", $term->identifier);
695 $template->setVariable(
"TERM_ID", $term->identifier);
699 $template->setVariable(
'MATCHING_MODE', $this->
object->getMatchingMode());
701 $template->setVariable(
"RESET_BUTTON", $this->lng->txt(
"reset_terms"));
703 $template->setVariable(
"QUESTIONTEXT", $this->
object->prepareTextareaOutput($this->object->getQuestion(),
true));
707 if (!$show_question_only) {
712 return $questionoutput;
720 protected function sortDefinitionsBySolution(
array $solution,
array $definitions)
723 $handled_defintions =
array();
724 foreach ($solution as $solution_values) {
725 $id = $solution_values[
'value2'];
726 if (!isset($handled_defintions[
$id])) {
727 $neworder[] = $this->
object->getDefinitionWithIdentifier($id);
728 $handled_defintions[
$id] =
$id;
732 foreach ($definitions as $definition) {
736 if (!isset($handled_defintions[$definition->identifier])) {
737 $neworder[] = $definition;
745 public function getTestOutput($active_id,
$pass, $is_postponed =
false, $user_post_solution =
false, $inlineFeedback =
false)
749 require_once
'Services/jQuery/classes/class.iljQueryUtil.php';
752 $this->tpl->addJavaScript(
'./libs/bower/bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.min.js');
754 $this->tpl->addJavaScript(
'Modules/TestQuestionPool/js/jquery-ui-1-10-3-fixed.js');
756 $this->tpl->addJavaScript(
'Modules/TestQuestionPool/js/ilMatchingQuestion.js');
759 $template =
new ilTemplate(
"tpl.il_as_qpl_matching_output.html",
true,
true,
"Modules/TestQuestionPool");
764 #include_once "./Modules/Test/classes/class.ilObjTest.php"; 765 #if (!ilObjTest::_getUsePreviousAnswers($active_id, true)) 767 # if (is_null($pass)) $pass = ilObjTest::_getPass($active_id); 770 if (is_array($user_post_solution)) {
771 $solutions =
array();
772 foreach ($user_post_solution[
'matching'][$this->
object->getId()] as $definition => $term) {
773 array_push($solutions,
array(
"value1" => $term,
"value2" => $definition));
777 $solutions = $this->
object->getTestOutputSolutions($active_id,
$pass);
782 foreach ($solutions as $idx => $solution_value) {
783 if (($solution_value[
"value2"] > -1) && ($solution_value[
"value1"] > -1)) {
784 $template->setCurrentBlock(
"matching_data");
785 $template->setVariable(
"TERM_ID", $solution_value[
"value1"]);
786 $template->setVariable(
"DEFINITION_ID", $solution_value[
"value2"]);
794 $terms = $this->
object->getTerms();
795 $definitions = $this->
object->getDefinitions();
796 switch ($this->
object->getShuffle()) {
798 $seed = $this->
object->getShuffler()->getSeed();
799 $this->
object->getShuffler()->setSeed($seed .
'1');
800 $terms = $this->
object->getShuffler()->shuffle($terms);
801 if (count($solutions)) {
802 $definitions = $this->sortDefinitionsBySolution($solutions, $definitions);
804 $this->
object->getShuffler()->setSeed($seed .
'2');
805 $definitions = $this->
object->getShuffler()->shuffle($definitions);
807 $this->
object->getShuffler()->setSeed($seed);
810 $terms = $this->
object->getShuffler()->shuffle($terms);
813 if (count($solutions)) {
814 $definitions = $this->sortDefinitionsBySolution($solutions, $definitions);
816 $definitions = $this->
object->getShuffler()->shuffle($definitions);
823 foreach ($definitions as $definition) {
824 if (strlen($definition->picture)) {
825 $template->setCurrentBlock(
"definition_picture");
826 $template->setVariable(
"DEFINITION_ID", $definition->identifier);
827 $template->setVariable(
"IMAGE_HREF", $this->
object->getImagePathWeb() . $definition->picture);
828 $thumbweb = $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $definition->picture;
829 $thumb = $this->
object->getImagePath() . $this->
object->getThumbPrefix() . $definition->picture;
830 if (!@file_exists($thumb)) {
831 $this->
object->rebuildThumbnails();
833 $template->setVariable(
"THUMBNAIL_HREF", $thumbweb);
834 $template->setVariable(
"THUMB_ALT", $this->lng->txt(
"image"));
835 $template->setVariable(
"THUMB_TITLE", $this->lng->txt(
"image"));
836 $template->setVariable(
"TEXT_DEFINITION", (strlen($definition->text)) ? $this->object->prepareTextareaOutput($definition->text,
true,
true) :
'');
837 $template->setVariable(
"TEXT_PREVIEW", $this->lng->txt(
'preview'));
841 $template->setCurrentBlock(
"definition_text");
842 $template->setVariable(
"DEFINITION", $this->
object->prepareTextareaOutput($definition->text,
true,
true));
847 $template->setVariable(
"ID_DROPAREA", $definition->identifier);
851 $template->setCurrentBlock(
"definition_data");
852 $template->setVariable(
"DEFINITION_ID", $definition->identifier);
858 foreach ($terms as $term) {
859 if (strlen($term->picture)) {
860 $template->setCurrentBlock(
"term_picture");
861 $template->setVariable(
"TERM_ID", $term->identifier);
862 $template->setVariable(
"IMAGE_HREF", $this->
object->getImagePathWeb() . $term->picture);
863 $thumbweb = $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $term->picture;
864 $thumb = $this->
object->getImagePath() . $this->
object->getThumbPrefix() . $term->picture;
865 if (!@file_exists($thumb)) {
866 $this->
object->rebuildThumbnails();
868 $template->setVariable(
"THUMBNAIL_HREF", $thumbweb);
869 $template->setVariable(
"THUMB_ALT", $this->lng->txt(
"image"));
870 $template->setVariable(
"THUMB_TITLE", $this->lng->txt(
"image"));
871 $template->setVariable(
"TEXT_PREVIEW", $this->lng->txt(
'preview'));
872 $template->setVariable(
"TEXT_TERM", (strlen($term->text)) ? $this->object->prepareTextareaOutput($term->text,
true,
true) :
'');
877 $template->setVariable(
"TERM_TEXT", $this->
object->prepareTextareaOutput($term->text,
true,
true));
881 $template->setVariable(
"ID_DRAGGABLE", $term->identifier);
885 $template->setVariable(
'TERM_ID', $term->identifier);
889 $template->setVariable(
'MATCHING_MODE', $this->
object->getMatchingMode());
891 $template->setVariable(
"RESET_BUTTON", $this->lng->txt(
"reset_terms"));
893 $template->setVariable(
"QUESTIONTEXT", $this->
object->prepareTextareaOutput($this->object->getQuestion(),
true));
918 global $rbacsystem, $ilTabs;
920 $ilTabs->clearTargets();
922 $this->ctrl->setParameterByClass(
"ilAssQuestionPageGUI",
"q_id",
$_GET[
"q_id"]);
923 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
924 $q_type = $this->
object->getQuestionType();
926 if (strlen($q_type)) {
927 $classname = $q_type .
"GUI";
928 $this->ctrl->setParameterByClass(strtolower($classname),
"sel_question_types", $q_type);
929 $this->ctrl->setParameterByClass(strtolower($classname),
"q_id",
$_GET[
"q_id"]);
933 if ($rbacsystem->checkAccess(
'write',
$_GET[
"ref_id"])) {
937 $this->ctrl->getLinkTargetByClass(
"ilAssQuestionPageGUI",
"edit"),
938 array(
"edit",
"insert",
"exec_pg"),
948 $force_active =
false;
949 if ($rbacsystem->checkAccess(
'write',
$_GET[
"ref_id"])) {
952 $url = $this->ctrl->getLinkTargetByClass($classname,
"editQuestion");
958 array(
"editQuestion",
"save",
"saveEdit",
"removeimageterms",
"uploadterms",
"removeimagedefinitions",
"uploaddefinitions",
959 "addpairs",
"removepairs",
"addterms",
"removeterms",
"adddefinitions",
"removedefinitions",
"originalSyncForm"),
979 $this->ctrl->getLinkTargetByClass($classname,
"assessment"),
991 $userSolution = $this->
object->fetchIndexedValuesFromValuePairs(
992 $this->
object->getSolutionValues($active_id,
$pass)
995 $matches = array_values($this->
object->matchingpairs);
997 if (!$this->
object->feedbackOBJ->specificAnswerFeedbackExists($matches)) {
1001 $feedback =
'<table class="test_specific_feedback"><tbody>';
1003 foreach ($matches as $idx => $ans) {
1005 if (!isset($userSolution[$ans->definition->identifier])) {
1009 if (!is_array($userSolution[$ans->definition->identifier])) {
1013 if (!in_array($ans->term->identifier, $userSolution[$ans->definition->identifier])) {
1018 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
1022 $feedback .=
'<tr><td>"' . $ans->definition->text .
'" ' . $this->lng->txt(
"matches") .
' "';
1023 $feedback .= $ans->term->text .
'"</td><td>';
1024 $feedback .= $fb .
'</td> </tr>';
1027 $feedback .=
'</tbody></table>';
1028 return $this->
object->prepareTextareaOutput($feedback,
true);
1074 if (!($pair->points > 0)) {
1078 if (!is_object($term)) {
1082 if ($pair->definition->identifier != $definition->identifier) {
1086 if ($pair->term->identifier != $term->identifier) {
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
const MATCHING_MODE_N_ON_N
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)
$GLOBALS['loaded']
Global hash that tracks already loaded includes.
if(!array_key_exists('StateId', $_REQUEST)) $id
isValidTermAndDefinitionAmount(ilPropertyFormGUI $form)
for mode 1:1 terms count must not be less than definitions count for mode n:n this limitation is canc...
getQuestionTemplate()
get question template
const CSS_CLASS_FEEDBACK_CORRECT
Matching question GUI representation.
populateTaxonomyFormSection(ilPropertyFormGUI $form)
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()
__construct($id=-1)
assMatchingQuestionGUI constructor
if(isset($_POST['submit'])) $form
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)
getSpecificFeedbackOutput($active_id, $pass)
writeQuestionSpecificPostData(ilPropertyFormGUI $form)
Extracts the question specific values from $_POST and applies them to the data object.
special template class to simplify handling of ITX/PEAR
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)
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)
Create styles array
The data for the language used.
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()
Create new PHPExcel object
obj_idprivate
addBackTab(ilTabsGUI $ilTabs)
editQuestion($checkonly=false)
Class for matching question definitions.
static initjQuery($a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
Interface ilGuiAnswerScoringAdjustable.
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="")
output question page
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.
addTab_SuggestedSolution(ilTabsGUI $tabs, $classname)
addQuestionFormCommandButtons($form)
Add the command buttons of a question properties form.