4 include_once
"./Modules/TestQuestionPool/classes/class.assQuestionGUI.php";
5 include_once
"./Modules/TestQuestionPool/classes/class.assFormulaQuestion.php";
6 include_once
"./Modules/TestQuestionPool/classes/class.assFormulaQuestionResult.php";
7 include_once
"./Modules/TestQuestionPool/classes/class.assFormulaQuestionVariable.php";
8 include_once
"./Modules/TestQuestionPool/classes/class.assFormulaQuestionUnit.php";
9 include_once
"./Modules/TestQuestionPool/classes/class.assFormulaQuestionUnitCategory.php";
10 include_once
"./Modules/Test/classes/inc.AssessmentConstants.php";
11 require_once
'./Modules/TestQuestionPool/interfaces/interface.ilGuiAnswerScoringAdjustable.php';
31 parent::__construct();
33 $this->newUnitId = null;
36 $this->
object->loadFromDb($id);
47 global $rbacsystem, $ilTabs;
49 $ilTabs->clearTargets();
51 $this->ctrl->setParameterByClass(
"ilAssQuestionPageGUI",
"q_id",
$_GET[
"q_id"]);
52 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
53 $q_type = $this->
object->getQuestionType();
57 $classname = $q_type .
"GUI";
58 $this->ctrl->setParameterByClass(strtolower($classname),
"sel_question_types", $q_type);
59 $this->ctrl->setParameterByClass(strtolower($classname),
"q_id",
$_GET[
"q_id"]);
64 if ($rbacsystem->checkAccess(
'write',
$_GET[
"ref_id"]))
67 $ilTabs->addTarget(
"edit_page",
68 $this->ctrl->getLinkTargetByClass(
"ilAssQuestionPageGUI",
"edit"),
69 array(
"edit",
"insert",
"exec_pg"),
70 "",
"", $force_active);
76 $force_active =
false;
77 if($rbacsystem->checkAccess(
'write',
$_GET[
"ref_id"]))
81 if($classname) $url = $this->ctrl->getLinkTargetByClass($classname,
"editQuestion");
83 if(is_array($commands))
85 foreach($commands as $key => $value)
87 if(preg_match(
"/^suggestrange_.*/", $key, $matches))
94 $ilTabs->addTarget(
"edit_properties",
97 "editQuestion",
"save",
"cancel",
"addSuggestedSolution",
98 "cancelExplorer",
"linkChilds",
"removeSuggestedSolution",
99 "parseQuestion",
"saveEdit",
"suggestRange" 101 $classname,
"", $force_active);
120 $this->addTab_Units($ilTabs);
126 $ilTabs->addTarget(
"statistics",
127 $this->ctrl->getLinkTargetByClass($classname,
"assessment"),
137 if(preg_match(
"/suggestrange_(.*?)/",
$cmd, $matches))
139 $cmd =
"suggestRange";
154 $this->editQuestion();
163 $hasErrors = (!$always) ? $this->editQuestion(
true) :
false;
167 $this->
object->setTitle(
$_POST[
"title"]);
168 $this->
object->setAuthor(
$_POST[
"author"]);
169 $this->
object->setComment(
$_POST[
"comment"]);
170 include_once
"./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
172 $this->
object->setQuestion($questiontext);
173 $this->
object->setEstimatedWorkingTime(
174 $_POST[
"Estimated"][
"hh"],
175 $_POST[
"Estimated"][
"mm"],
179 $this->
object->parseQuestionText();
180 $found_vars = array();
181 $found_results = array();
184 foreach(
$_POST as $key => $value)
186 if(preg_match(
"/^unit_(\\\$v\d+)$/", $key, $matches))
188 array_push($found_vars, $matches[1]);
190 if(preg_match(
"/^unit_(\\\$r\d+)$/", $key, $matches))
192 array_push($found_results, $matches[1]);
202 if(!$this->object->checkForDuplicateResults())
208 foreach($found_vars as $variable)
210 if($this->object->getVariable($variable) != null)
214 $varObj->setRangeMaxTxt(
$_POST[
"range_max_$variable"]);
215 $this->
object->addVariable($varObj);
219 $tmp_form_vars = array();
220 $tmp_quest_vars = array();
221 foreach($found_results as
$result)
223 $tmp_res_match = preg_match_all(
"/([$][v][0-9]*)/",
$_POST[
"formula_$result"], $form_vars);
224 $tmp_form_vars = array_merge($tmp_form_vars,$form_vars[0]);
226 $tmp_que_match = preg_match_all(
"/([$][v][0-9]*)/",
$_POST[
'question'] , $quest_vars);
227 $tmp_quest_vars= array_merge($tmp_quest_vars,$quest_vars[0]);
229 $result_has_undefined_vars = array_diff($tmp_form_vars, $found_vars);
230 $question_has_unused_vars = array_diff($tmp_quest_vars, $tmp_form_vars);
232 if(count($result_has_undefined_vars) > 0 || count($question_has_unused_vars) > 0)
235 if(count($result_has_undefined_vars) > 0)
237 $error_message .= $this->lng->txt(
"res_contains_undef_var").
'<br>';
239 if(count($question_has_unused_vars) > 0)
241 $error_message .= $this->lng->txt(
"que_contains_unused_var");
249 foreach($found_results as $result)
251 if(is_object($this->object->getUnitrepository()->getUnit(
$_POST[
"unit_$result"])))
253 $tmp_result_unit = $this->
object->getUnitrepository()->getUnit(
$_POST[
"unit_$result"]);
257 $tmp_result_unit = NULL;
260 if($this->object->getResult($result) != null)
262 $use_simple_rating = (
$_POST[
"rating_advanced_$result"] == 1) ? FALSE : TRUE;
265 $_POST[
"range_min_$result"],
266 $_POST[
"range_max_$result"],
267 $_POST[
"tolerance_$result"],
270 $_POST[
"formula_$result"],
272 $_POST[
"precision_$result"],
274 (
$_POST[
"rating_advanced_$result"] == 1) ?
$_POST[
"rating_sign_$result"] :
"",
275 (
$_POST[
"rating_advanced_$result"] == 1) ?
$_POST[
"rating_value_$result"] :
"",
276 (
$_POST[
"rating_advanced_$result"] == 1) ?
$_POST[
"rating_unit_$result"] :
"",
277 $_POST[
"result_type_$result"] != 0 ?
$_POST[
"result_type_$result"] : 0
279 $resObj->setRangeMinTxt(
$_POST[
"range_min_$result"]);
280 $resObj->setRangeMaxTxt(
$_POST[
"range_max_$result"]);
281 $this->
object->addResult($resObj);
282 $this->
object->addResultUnits($resObj,
$_POST[
"units_$result"]);
285 if($checked ==
false)
304 $user_id = $ilUser->getId();
305 $question_id = $this->
object->getId();
306 require_once
'Modules/TestQuestionPool/classes/class.ilAssQuestionPreviewSession.php';
308 $ilAssQuestionPreviewSession->setParticipantsSolution(array());
313 return in_array($this->ctrl->getCmd(), array(
'saveFQ',
'saveEdit',
'saveReturnFQ'));
321 function editQuestion($checkonly = FALSE)
327 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
329 $form->setFormAction($this->ctrl->getFormAction($this));
331 $form->setMultipart(FALSE);
332 $form->setTableWidth(
'100%');
333 $form->setId(
'assformulaquestion');
339 $question = $form->getItemByPostVar(
'question');
340 $question->setInfo($this->lng->txt(
'fq_question_desc'));
342 $variables = $this->
object->getVariables();
343 $categorized_units = $this->
object->getUnitrepository()->getCategorizedUnits();
344 $result_units = $this->
object->__get(
'resultunits');
346 $unit_options = array();
348 $new_category =
false;
349 foreach((array)$categorized_units as $item)
356 if($category_name != $item->getDisplayString())
358 $new_category =
true;
359 $category_name = $item->getDisplayString();
363 $unit_options[$item->getId()] = $item->getDisplayString() . ($new_category ?
' (' . $category_name .
')' :
'');
364 $new_category =
false;
367 if(count($variables))
372 if($num_v1 > $num_v2)
376 else if($num_v1 < $num_v2)
384 foreach($variables as $variable)
390 $variable_header->setTitle(sprintf($this->lng->txt(
'variable_x'), $variable->getVariable()));
392 $range_min =
new ilNumberInputGUI($this->lng->txt(
'range_min'),
'range_min_' . $variable->getVariable());
394 $range_min->setSize(3);
395 $range_min->setRequired(
true);
396 $range_min->setValue($variable->getRangeMin());
398 $range_max =
new ilNumberInputGUI($this->lng->txt(
'range_max'),
'range_max_' . $variable->getVariable());
400 $range_max->setSize(3);
401 $range_max->setRequired(
true);
402 $range_max->setValue($variable->getRangeMax());
404 $units =
new ilSelectInputGUI($this->lng->txt(
'unit'),
'unit_' . $variable->getVariable());
405 $units->
setOptions(array(0 => $this->lng->txt(
'no_selection')) + $unit_options);
406 if(is_object($variable->getUnit()))
408 $units->setValue($variable->getUnit()->getId());
411 $precision =
new ilNumberInputGUI($this->lng->txt(
'precision'),
'precision_' . $variable->getVariable());
413 $precision->setSize(3);
414 $precision->setMinValue(0);
415 $precision->setValue($variable->getPrecision());
416 $precision->setInfo($this->lng->txt(
'fq_precision_info'));
418 $intprecision =
new ilNumberInputGUI($this->lng->txt(
'intprecision'),
'intprecision_' . $variable->getVariable());
420 $intprecision->setMinValue(1);
421 $intprecision->setValue($variable->getIntprecision());
422 $intprecision->setInfo($this->lng->txt(
'intprecision_info'));
424 $form->addItem($variable_header);
425 $form->addItem($range_min);
426 $form->addItem($range_max);
427 $form->addItem($units);
428 $form->addItem($precision);
429 $form->addItem($intprecision);
433 $results = $this->
object->getResults();
436 require_once
'Services/Form/classes/class.ilMultiSelectInputGUI.php';
439 $num_r1 = (int)substr($r1->
getResult(), 2);
440 $num_r2 = (int)substr($r2->
getResult(), 2);
441 if($num_r1 > $num_r2)
445 else if($num_r1 < $num_r2)
459 $result_header->setTitle(sprintf($this->lng->txt(
'result_x'), $result->getResult()));
461 $formula =
new ilTextInputGUI($this->lng->txt(
'formula'),
'formula_' . $result->getResult());
462 $formula->
setInfo($this->lng->txt(
'fq_formula_desc'));
463 $formula->setRequired(
true);
464 $formula->setSize(50);
465 $formula->setValue($result->getFormula());
466 $formula->setSuffix(
' = ' . $result->getResult());
469 preg_match(
"/suggestrange_(.*)/", $this->ctrl->getCmd(), $matches) &&
470 strcmp($matches[1], $result->getResult()) == 0
474 if(strlen($result->substituteFormula($variables,
$results)))
476 $result->suggestRange($variables,
$results);
480 $range_min =
new ilNumberInputGUI($this->lng->txt(
'range_min'),
'range_min_' . $result->getResult());
482 $range_min->setSize(3);
483 $range_min->setRequired(
true);
484 $range_min->setValue($result->getRangeMin());
486 $range_max =
new ilNumberInputGUI($this->lng->txt(
'range_max'),
'range_max_' . $result->getResult());
488 $range_max->setSize(3);
489 $range_max->setRequired(
true);
490 $range_max->setValue($result->getRangeMax());
494 $precision =
new ilNumberInputGUI($this->lng->txt(
'precision'),
'precision_' . $result->getResult());
496 $precision->setSize(3);
497 $precision->setMinValue(0);
498 $precision->setInfo($this->lng->txt(
'fq_precision_info'));
499 $precision->setValue($result->getPrecision());
501 $tolerance =
new ilNumberInputGUI($this->lng->txt(
'tolerance'),
'tolerance_' . $result->getResult());
503 $tolerance->setMinValue(0);
504 $tolerance->setMaxValue(100);
505 $tolerance->allowDecimals(
false);
506 $tolerance->setInfo($this->lng->txt(
'tolerance_info'));
507 $tolerance->setValue($result->getTolerance());
510 $suggest_range_button->setHtml(
'<input type="submit" class="btn btn-default" name="cmd[suggestrange_'.$result->getResult().
']" value="'.$this->lng->txt(
"suggest_range").
'" />');
512 $sel_result_units =
new ilSelectInputGUI($this->lng->txt(
'unit'),
'unit_' . $result->getResult());
513 $sel_result_units->
setOptions(array(0 => $this->lng->txt(
'no_selection')) + $unit_options);
514 $sel_result_units->setInfo($this->lng->txt(
'result_unit_info'));
515 if(is_object($result->getUnit()))
517 $sel_result_units->setValue($result->getUnit()->getId());
520 $mc_result_units =
new ilMultiSelectInputGUI($this->lng->txt(
'result_units'),
'units_' . $result->getResult());
522 $mc_result_units->setInfo($this->lng->txt(
'result_units_info'));
523 $selectedvalues = array();
524 foreach($unit_options as $unit_id =>
$txt)
528 $selectedvalues[] = $unit_id;
531 $mc_result_units->setValue($selectedvalues);
533 $result_type =
new ilRadioGroupInputGUI($this->lng->txt(
'result_type_selection'),
'result_type_' . $result->getResult());
536 $no_type =
new ilRadioOption($this->lng->txt(
'no_result_type'), 0);
537 $no_type->
setInfo($this->lng->txt(
'fq_no_restriction_info'));
539 $result_dec =
new ilRadioOption($this->lng->txt(
'result_dec'), 1);
540 $result_dec->
setInfo($this->lng->txt(
'result_dec_info'));
542 $result_frac =
new ilRadioOption($this->lng->txt(
'result_frac'), 2);
543 $result_frac->
setInfo($this->lng->txt(
'result_frac_info'));
545 $result_co_frac =
new ilRadioOption($this->lng->txt(
'result_co_frac'), 3);
546 $result_co_frac->
setInfo($this->lng->txt(
'result_co_frac_info'));
548 $result_type->addOption($no_type);
549 $result_type->addOption($result_dec);
550 $result_type->addOption($result_frac);
551 $result_type->addOption($result_co_frac);
552 $result_type->setValue(strlen($result->getResultType()) ? $result->getResultType() : 0);
554 $points =
new ilNumberInputGUI($this->lng->txt(
'points'),
'points_' . $result->getResult());
556 $points->setRequired(
true);
558 $points->setMinValue(0);
559 $points->setValue(strlen($result->getPoints()) ? $result->getPoints() : 1);
561 $rating_type =
new ilCheckboxInputGUI($this->lng->txt(
'advanced_rating'),
'rating_advanced_' . $result->getResult());
563 $rating_type->setInfo($this->lng->txt(
'advanced_rating_info'));
568 if(!$advanced_rating)
570 $rating_type->setDisabled(
true);
571 $rating_type->setChecked(
false);
575 $rating_type->setChecked(strlen($result->getRatingSimple()) && $result->getRatingSimple() ? false :
true);
579 $sign =
new ilNumberInputGUI($this->lng->txt(
'rating_sign'),
'rating_sign_' . $result->getResult());
582 $sign->setMinValue(0);
583 $sign->setValue($result->getRatingSign());
584 $rating_type->addSubItem($sign);
586 $value =
new ilNumberInputGUI($this->lng->txt(
'rating_value'),
'rating_value_' . $result->getResult());
589 $value->setMinValue(0);
590 $value->setValue($result->getRatingValue());
591 $rating_type->addSubItem($value);
593 $unit =
new ilNumberInputGUI($this->lng->txt(
'rating_unit'),
'rating_unit_' . $result->getResult());
596 $unit->setMinValue(0);
597 $unit->setValue($result->getRatingUnit());
598 $rating_type->addSubItem($unit);
603 $form->addItem($result_header);
604 $form->addItem($formula);
605 $form->addItem($range_min);
606 $form->addItem($range_max);
607 $form->addItem($suggest_range_button);
608 $form->addItem($precision);
609 $form->addItem($tolerance);
610 $form->addItem($sel_result_units);
611 $form->addItem($mc_result_units);
612 $form->addItem($result_type);
613 $form->addItem($points);
614 $form->addItem($rating_type);
617 $defined_result_vars = array();
618 $quest_vars = array();
620 $defined_result_res = array();
621 $result_vars = array();
623 foreach($variables as $key =>
$object)
625 $quest_vars[$key] = $key;
630 $result_vars[$key] = $key;
638 $formula = $tmp_result->getFormula();
640 preg_match_all(
"/([$][v][0-9]*)/", $formula, $form_vars);
641 preg_match_all(
"/([$][r][0-9]*)/", $formula, $form_res);
642 foreach($form_vars[0] as $res_var)
644 $defined_result_vars[$res_var] = $res_var;
647 foreach($form_res[0] as $res_res)
649 $defined_result_res[$res_res] = $res_res;
654 $result_has_undefined_vars = array();
655 $question_has_unused_vars = array();
657 if(is_array($quest_vars) && count($quest_vars) > 0)
659 $result_has_undefined_vars = array_diff($defined_result_vars, $quest_vars);
660 $question_has_unused_vars = array_diff($quest_vars, $defined_result_vars);
663 if(is_array($result_vars) && count($result_vars) > 0)
665 $result_has_undefined_res = array_diff($defined_result_res, $result_vars);
670 if(count($result_has_undefined_vars) > 0 || count($question_has_unused_vars) > 0)
672 if(count($result_has_undefined_vars) > 0)
674 $error_message .= $this->lng->txt(
"res_contains_undef_var").
'<br>';
676 if(count($question_has_unused_vars) > 0)
678 $error_message .= $this->lng->txt(
"que_contains_unused_var").
'<br>';
688 if(count($result_has_undefined_res) > 0)
690 $error_message .= $this->lng->txt(
"res_contains_undef_res").
'<br>';
694 if($save && !$checked)
699 if($this->object->getId())
702 $hidden->setValue($this->object->getId());
703 $form->addItem($hidden);
708 $form->addCommandButton(
'parseQuestion', $this->lng->txt(
"parseQuestion"));
709 $form->addCommandButton(
'saveReturnFQ', $this->lng->txt(
"save_return"));
710 $form->addCommandButton(
'saveFQ', $this->lng->txt(
"save"));
716 $found_vars = array();
717 $found_results = array();
718 foreach((array)
$_POST as $key => $value)
720 if(preg_match(
"/^unit_(\\\$v\d+)$/", $key, $matches))
722 array_push($found_vars, $matches[1]);
724 if(preg_match(
"/^unit_(\\\$r\d+)$/", $key, $matches))
726 array_push($found_results, $matches[1]);
730 $form->setValuesByPost();
731 $errors = !$form->checkInput();
733 $custom_errors =
false;
734 if(count($variables))
736 foreach($variables as $variable)
741 $min_range = $form->getItemByPostVar(
'range_min_' . $variable->getVariable());
742 $max_range = $form->getItemByPostVar(
'range_max_' . $variable->getVariable());
743 if($min_range->getValue() > $max_range->getValue())
745 $min_range->setAlert($this->lng->txt(
'err_range'));
746 $max_range->setAlert($this->lng->txt(
'err_range'));
747 $custom_errors =
true;
759 $min_range = $form->getItemByPostVar(
'range_min_' . $result->getResult());
760 $max_range = $form->getItemByPostVar(
'range_max_' . $result->getResult());
761 if($min_range->getValue() > $max_range->getValue())
763 $min_range->setAlert($this->lng->txt(
'err_range'));
764 $max_range->setAlert($this->lng->txt(
'err_range'));
765 $custom_errors =
true;
769 $formula = $form->getItemByPostVar(
'formula_' . $result->getResult());
770 if(strpos($formula->getValue(), $result->getResult()) !== FALSE)
772 $formula->setAlert($this->lng->txt(
'errRecursionInResult'));
773 $custom_errors =
true;
776 $result_unit = $form->getItemByPostVar(
'unit_' . $result->getResult());
777 $rating_advanced = $form->getItemByPostVar(
'rating_advanced_' . $result->getResult());
778 if(((
int)$result_unit->getValue() <= 0) && $rating_advanced->getChecked())
780 unset(
$_POST[
'rating_advanced_' . $result->getResult()]);
781 $rating_advanced->setDisabled(
true);
782 $rating_advanced->setChecked(
false);
783 $rating_advanced->setAlert($this->lng->txt(
'err_rating_advanced_not_allowed'));
784 $custom_errors =
true;
786 else if($rating_advanced->getChecked())
788 $rating_sign = $form->getItemByPostVar(
'rating_sign_' . $result->getResult());
789 $rating_value = $form->getItemByPostVar(
'rating_value_' . $result->getResult());
790 $rating_unit = $form->getItemByPostVar(
'rating_unit_' . $result->getResult());
792 $percentage = $rating_sign->getValue() + $rating_value->getValue() + $rating_unit->getValue();
793 if($percentage != 100)
795 $rating_advanced->setAlert($this->lng->txt(
'err_wrong_rating_advanced'));
796 $custom_errors =
true;
800 preg_match_all(
"/([$][v][0-9]*)/", $formula->getValue(), $form_vars);
801 $result_has_undefined_vars = array_diff($form_vars[0], (array)$found_vars);
802 if(count($result_has_undefined_vars))
815 $form->setValuesByPost();
824 $this->tpl->setVariable(
'QUESTION_DATA', $form->getHTML());
831 if (array_key_exists(
$result->getResult(), $resultunits))
833 if (array_key_exists($unit_id, $resultunits[
$result->getResult()]))
return TRUE;
847 $resultunit =
$result->getUnit();
855 if(is_object($resultunit))
868 $this->editQuestion();
874 $old_id =
$_GET[
"q_id"];
878 $ilUser->setPref(
"tst_lastquestiontype", $this->object->getQuestionType());
879 $ilUser->writePref(
"tst_lastquestiontype", $this->object->getQuestionType());
881 $this->
object->saveToDb();
882 $originalexists = $this->
object->_questionExistsInPool($this->object->original_id);
883 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
886 $this->ctrl->redirect($this,
"originalSyncForm");
889 elseif ($_GET[
"calling_test"])
891 require_once
'Modules/Test/classes/class.ilObjTest.php';
893 #var_dump(assQuestion::_questionExistsInTest($this->object->getId(), $test->getTestId())); 894 $q_id = $this->
object->getId();
897 global $tree,
$ilDB, $ilPluginAdmin;
899 include_once(
"./Modules/Test/classes/class.ilObjTest.php");
900 $_GET[
"ref_id"] = $_GET[
"calling_test"];
903 require_once
'Modules/Test/classes/class.ilTestQuestionSetConfigFactory.php';
906 $new_id =
$test->insertQuestion(
907 $testQuestionSetConfigFactory->getQuestionSetConfig(), $this->
object->getId()
913 $test->moveQuestionAfter($this->object->getId() + 1,
$_REQUEST[
'prev_qid']);
916 $this->ctrl->setParameter($this,
'q_id', $new_id);
917 $this->ctrl->setParameter($this,
'calling_test', $_GET[
'calling_test']);
918 #$this->ctrl->setParameter($this, 'test_ref_id', false); 928 ilUtil::redirect(
"ilias.php?baseClass=ilObjTestGUI&cmd=questions&ref_id=" . $_GET[
"calling_test"]);
933 if ($this->object->getId() != $old_id)
937 $this->ctrl->redirectByClass(
"ilobjquestionpoolgui",
"questions");
947 $this->ctrl->redirectByClass(
"ilobjquestionpoolgui",
"questions");
952 $ilUser->setPref(
"tst_lastquestiontype", $this->object->getQuestionType());
953 $ilUser->writePref(
"tst_lastquestiontype", $this->object->getQuestionType());
954 $this->
object->saveToDb();
955 $this->editQuestion();
965 $this->editQuestion();
980 $this->
addErrorMessage($this->lng->txt(
"fill_out_all_required_fields"));
1003 $graphicalOutput = FALSE,
1004 $result_output = FALSE,
1005 $show_question_only = TRUE,
1006 $show_feedback = FALSE,
1007 $show_correct_solution = FALSE,
1008 $show_manual_scoring = FALSE,
1009 $show_question_text = TRUE
1013 $user_solution =
"";
1014 if(($active_id > 0) && (!$show_correct_solution))
1017 include_once
"./Modules/Test/classes/class.ilObjTest.php";
1022 $user_solution[
"active_id"] = $active_id;
1023 $user_solution[
"pass"] =
$pass;
1024 $solutions =& $this->
object->getSolutionValues($active_id,
$pass);
1025 foreach($solutions as $idx => $solution_value)
1027 if(preg_match(
"/^(\\\$v\\d+)$/", $solution_value[
"value1"], $matches))
1029 $user_solution[$matches[1]] = $solution_value[
"value2"];
1031 else if(preg_match(
"/^(\\\$r\\d+)$/", $solution_value[
"value1"], $matches))
1033 if(!array_key_exists($matches[1], $user_solution)) $user_solution[$matches[1]] = array();
1034 $user_solution[$matches[1]][
"value"] = $solution_value[
"value2"];
1036 else if(preg_match(
"/^(\\\$r\\d+)_unit$/", $solution_value[
"value1"], $matches))
1038 if(!array_key_exists($matches[1], $user_solution)) $user_solution[$matches[1]] = array();
1039 $user_solution[$matches[1]][
"unit"] = $solution_value[
"value2"];
1046 include_once
"./Modules/Test/classes/class.ilObjTest.php";
1051 $user_solution = $this->
object->getBestSolution($this->object->getSolutionValues($active_id,
$pass));
1055 $solutionValues = array();
1057 foreach($this->
getPreviewSession()->getParticipantsSolution() as $val1 => $val2)
1059 $solutionValues[] = array(
'value1' => $val1,
'value2' => $val2);
1062 $user_solution = $this->
object->getBestSolution($solutionValues);
1065 $template =
new ilTemplate(
"tpl.il_as_qpl_formulaquestion_output_solution.html",
true,
true,
'Modules/TestQuestionPool');
1066 $questiontext = $this->
object->substituteVariables($user_solution, $graphicalOutput, TRUE, $result_output, $this->
getPreviewSession());
1068 $template->setVariable(
"QUESTIONTEXT", $this->object->prepareTextareaOutput($questiontext, TRUE));
1069 $questionoutput = $template->get();
1070 $solutiontemplate =
new ilTemplate(
"tpl.il_as_tst_solution_output.html", TRUE, TRUE,
"Modules/TestQuestionPool");
1072 if (strlen($feedback)) $solutiontemplate->setVariable(
"FEEDBACK", $this->object->prepareTextareaOutput( $feedback,
true ));
1073 $solutiontemplate->setVariable(
"SOLUTION_OUTPUT", $questionoutput);
1075 $solutionoutput = $solutiontemplate->get();
1076 if(!$show_question_only)
1079 $solutionoutput = $this->
getILIASPage($solutionoutput);
1081 return $solutionoutput;
1084 function getPreview($show_question_only = FALSE, $showInlineFeedback =
false)
1086 $user_solution = array();
1092 foreach($solutions as $val1 => $val2)
1094 if(preg_match(
"/^(\\\$v\\d+)$/", $val1, $matches))
1096 $user_solution[$matches[1]] = $val2;
1098 else if(preg_match(
"/^(\\\$r\\d+)$/", $val1, $matches))
1101 if(!array_key_exists($matches[1], $user_solution)) $user_solution[$matches[1]] = array();
1102 $user_solution[$matches[1]][
"value"] = $val2;
1104 else if(preg_match(
"/^(\\\$r\\d+)_unit$/", $val1, $matches))
1106 if(!array_key_exists($matches[1], $user_solution)) $user_solution[$matches[1]] = array();
1107 $user_solution[$matches[1]][
"unit"] = $val2;
1110 if(preg_match(
"/^(\\\$r\\d+)/", $val1, $matches) && $user_solution[$matches[1]][
"result_type"] == 0)
1117 $template =
new ilTemplate(
"tpl.il_as_qpl_formulaquestion_output.html",
true,
true,
'Modules/TestQuestionPool');
1120 $questiontext = $this->
object->substituteVariables($user_solution,
false,
false,
false, $this->
getPreviewSession());
1124 $questiontext = $this->
object->substituteVariables();
1126 $template->setVariable(
"QUESTIONTEXT", $this->object->prepareTextareaOutput($questiontext, TRUE));
1127 $questionoutput = $template->get();
1128 if(!$show_question_only)
1131 $questionoutput = $this->
getILIASPage($questionoutput);
1133 return $questionoutput;
1136 function getTestOutput($active_id,
$pass = NULL, $is_postponed = FALSE, $use_post_solutions = FALSE, $show_feedback = FALSE)
1140 $user_solution = null;
1144 include_once
"./Modules/Test/classes/class.ilObjTest.php";
1147 $user_solution[
"active_id"] = $active_id;
1148 $user_solution[
"pass"] =
$pass;
1149 $solutions =& $this->
object->getSolutionValues($active_id,
$pass);
1151 foreach($solutions as $idx => $solution_value)
1153 if(preg_match(
"/^(\\\$v\\d+)$/", $solution_value[
"value1"], $matches))
1155 $user_solution[$matches[1]] = $solution_value[
"value2"];
1157 else if(preg_match(
"/^(\\\$r\\d+)$/", $solution_value[
"value1"], $matches))
1160 if(!array_key_exists($matches[1], $user_solution)) $user_solution[$matches[1]] = array();
1161 $user_solution[$matches[1]][
"value"] = $solution_value[
"value2"];
1163 else if(preg_match(
"/^(\\\$r\\d+)_unit$/", $solution_value[
"value1"], $matches))
1165 if(!array_key_exists($matches[1], $user_solution)) $user_solution[$matches[1]] = array();
1166 $user_solution[$matches[1]][
"unit"] = $solution_value[
"value2"];
1169 if(preg_match(
"/^(\\\$r\\d+)/", $solution_value[
"value1"], $matches) && $user_solution[$matches[1]][
"result_type"] == 0)
1177 $template =
new ilTemplate(
"tpl.il_as_qpl_formulaquestion_output.html",
true,
true,
'Modules/TestQuestionPool');
1179 $questiontext = $this->
object->substituteVariables($user_solution);
1181 $template->setVariable(
"QUESTIONTEXT", $this->object->prepareTextareaOutput($questiontext, TRUE));
1183 $questionoutput = $template->get();
1184 $pageoutput = $this->
outQuestionPage(
"", $is_postponed, $active_id, $questionoutput);
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
addTab_QuestionPreview(ilTabsGUI $tabsGUI)
This class represents an option in a radio group.
writePostData()
Evaluates a posted edit form and writes the form data in the question object.
addBasicQuestionFormProperties($form)
Add basic question form properties: assessment: title, author, description, question, working time.
addTab_QuestionHints(ilTabsGUI $tabs)
adds the hints tab to ilTabsGUI
addErrorMessage($errormessage)
_getPass($active_id)
Retrieves the actual pass of a given user for a given test.
callNewIdListeners($a_new_id)
Call the new id listeners.
getQuestionTemplate()
get question template
setInfo($a_info)
Set Info.
populateTaxonomyFormSection(ilPropertyFormGUI $form)
static stripOnlySlashes($a_str)
strip slashes if magic qoutes is enabled
_questionExistsInTest($question_id, $test_id)
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
static getReturnToPageLink($q_id=null)
getILIASPage($html="")
Returns the ILIAS Page around a question.
special template class to simplify handling of ITX/PEAR
This class represents a text property in a property form.
addTab_QuestionFeedback(ilTabsGUI $tabs)
adds the feedback tab to ilTabsGUI
Basic GUI class for assessment questions.
_getUsePreviousAnswers($active_id, $user_active_user_setting=false)
Returns if the previous results should be hidden for a learner.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
saveTaxonomyAssignments()
This class represents a non editable value in a property form.
addBackTab(ilTabsGUI $ilTabs)
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="")
output question page
if($_REQUEST['ilias_path']) define('ILIAS_HTTP_PATH' $_REQUEST['ilias_path']
getGenericFeedbackOutput($active_id, $pass)
Returns the answer specific feedback for the question.
static redirect($a_script)
http redirect to other script
_isWriteable($question_id, $user_id)
Returns true if the question is writeable by a certain user.