35 $this->newUnitId = null;
37 $this->
object->loadFromDb($id);
43 if (preg_match(
'/suggestrange_(\$r\d+)/', $cmd, $matches)) {
58 $this->editQuestion(
false, $suggest_range_for_result);
66 $hasErrors = (!$always) ? $this->editQuestion(
true) :
false;
69 $this->
object->setTitle(
$_POST[
"title"]);
70 $this->
object->setAuthor(
$_POST[
"author"]);
71 $this->
object->setComment(
$_POST[
"comment"]);
72 include_once
"./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
74 $this->
object->setQuestion($questiontext);
75 $this->
object->setEstimatedWorkingTime(
81 $this->
object->parseQuestionText();
82 $found_vars = array();
83 $found_results = array();
86 foreach (
$_POST as $key => $value) {
87 if (preg_match(
"/^unit_(\\\$v\d+)$/", $key, $matches)) {
88 array_push($found_vars, $matches[1]);
90 if (preg_match(
"/^unit_(\\\$r\d+)$/", $key, $matches)) {
91 array_push($found_results, $matches[1]);
97 $this->
object->setLifecycle($lifecycle);
107 if (!$this->object->checkForDuplicateResults()) {
112 foreach ($found_vars as $variable) {
113 if ($this->object->getVariable($variable) != null) {
116 $varObj->setRangeMaxTxt(
$_POST[
"range_max_$variable"]);
117 $this->
object->addVariable($varObj);
121 $tmp_form_vars = array();
122 $tmp_quest_vars = array();
123 foreach ($found_results as
$result) {
124 $tmp_res_match = preg_match_all(
"/([$][v][0-9]*)/",
$_POST[
"formula_$result"], $form_vars);
125 $tmp_form_vars = array_merge($tmp_form_vars, $form_vars[0]);
127 $tmp_que_match = preg_match_all(
"/([$][v][0-9]*)/",
$_POST[
'question'], $quest_vars);
128 $tmp_quest_vars = array_merge($tmp_quest_vars, $quest_vars[0]);
130 $result_has_undefined_vars = array_diff($tmp_form_vars, $found_vars);
131 $question_has_unused_vars = array_diff($tmp_quest_vars, $tmp_form_vars);
133 if (count($result_has_undefined_vars) > 0 || count($question_has_unused_vars) > 0) {
135 if (count($result_has_undefined_vars) > 0) {
136 $error_message .= $this->lng->txt(
"res_contains_undef_var") .
'<br>';
138 if (count($question_has_unused_vars) > 0) {
139 $error_message .= $this->lng->txt(
"que_contains_unused_var");
146 foreach ($found_results as $result) {
147 if (is_object($this->object->getUnitrepository()->getUnit(
$_POST[
"unit_$result"]))) {
148 $tmp_result_unit = $this->
object->getUnitrepository()->getUnit(
$_POST[
"unit_$result"]);
150 $tmp_result_unit = null;
153 if ($this->object->getResult($result) != null) {
154 $use_simple_rating = (
$_POST[
"rating_advanced_$result"] == 1) ?
false :
true;
157 $_POST[
"range_min_$result"],
158 $_POST[
"range_max_$result"],
159 $_POST[
"tolerance_$result"],
161 $_POST[
"formula_$result"],
163 $_POST[
"precision_$result"],
165 (
$_POST[
"rating_advanced_$result"] == 1) ?
$_POST[
"rating_sign_$result"] :
"",
166 (
$_POST[
"rating_advanced_$result"] == 1) ?
$_POST[
"rating_value_$result"] :
"",
167 (
$_POST[
"rating_advanced_$result"] == 1) ?
$_POST[
"rating_unit_$result"] :
"",
168 $_POST[
"result_type_$result"] != 0 ?
$_POST[
"result_type_$result"] : 0
170 $resObj->setRangeMinTxt(
$_POST[
"range_min_$result"]);
171 $resObj->setRangeMaxTxt(
$_POST[
"range_max_$result"]);
172 $this->
object->addResult($resObj);
173 $this->
object->addResultUnits($resObj,
$_POST[
"units_$result"]);
176 if ($checked ==
false) {
192 $question_id = $this->
object->getId();
193 require_once
'Modules/TestQuestionPool/classes/class.ilAssQuestionPreviewSession.php';
195 $ilAssQuestionPreviewSession->setParticipantsSolution(array());
200 return in_array($this->ctrl->getCmd(), array(
'saveFQ',
'saveEdit',
'saveReturnFQ'));
208 public function editQuestion($checkonly =
false,
string $suggest_range_for_result =
'')
215 $this->editForm = $form;
217 $form->setFormAction($this->ctrl->getFormAction($this));
219 $form->setMultipart(
false);
220 $form->setTableWidth(
'100%');
221 $form->setId(
'assformulaquestion');
227 $question = $form->getItemByPostVar(
'question');
228 $question->setInfo($this->lng->txt(
'fq_question_desc'));
230 $variables = $this->
object->getVariables();
231 $categorized_units = $this->
object->getUnitrepository()->getCategorizedUnits();
232 $result_units = $this->
object->__get(
'resultunits');
234 $unit_options = array();
236 $new_category =
false;
237 foreach ((array) $categorized_units as $item) {
242 if ($category_name != $item->getDisplayString()) {
243 $new_category =
true;
244 $category_name = $item->getDisplayString();
248 $unit_options[$item->getId()] = $item->getDisplayString() . ($new_category ?
' (' . $category_name .
')' :
'');
249 $new_category =
false;
252 if (count($variables)) {
256 if ($num_v1 > $num_v2) {
258 } elseif ($num_v1 < $num_v2) {
265 foreach ($variables as $variable) {
270 $variable_header->setTitle(sprintf($this->lng->txt(
'variable_x'), $variable->getVariable()));
272 $range_min =
new ilNumberInputGUI($this->lng->txt(
'range_min'),
'range_min_' . $variable->getVariable());
274 $range_min->setSize(3);
275 $range_min->setRequired(
true);
276 $range_min->setValue($variable->getRangeMin());
278 $range_max =
new ilNumberInputGUI($this->lng->txt(
'range_max'),
'range_max_' . $variable->getVariable());
280 $range_max->setSize(3);
281 $range_max->setRequired(
true);
282 $range_max->setValue($variable->getRangeMax());
284 $units =
new ilSelectInputGUI($this->lng->txt(
'unit'),
'unit_' . $variable->getVariable());
285 $units->setOptions(array(0 => $this->lng->txt(
'no_selection')) + $unit_options);
286 if (is_object($variable->getUnit())) {
287 $units->setValue($variable->getUnit()->getId());
290 $precision =
new ilNumberInputGUI($this->lng->txt(
'precision'),
'precision_' . $variable->getVariable());
292 $precision->setSize(3);
293 $precision->setMinValue(0);
294 $precision->setValue($variable->getPrecision());
295 $precision->setInfo($this->lng->txt(
'fq_precision_info'));
297 $intprecision =
new ilNumberInputGUI($this->lng->txt(
'intprecision'),
'intprecision_' . $variable->getVariable());
299 $intprecision->setMinValue(1);
300 $intprecision->setValue($variable->getIntprecision());
301 $intprecision->setInfo($this->lng->txt(
'intprecision_info'));
303 $form->addItem($variable_header);
304 $form->addItem($range_min);
305 $form->addItem($range_max);
306 $form->addItem($units);
307 $form->addItem($precision);
308 $form->addItem($intprecision);
312 $results = $this->
object->getResults();
315 $num_r1 = (int) substr($r1->
getResult(), 2);
316 $num_r2 = (int) substr($r2->
getResult(), 2);
317 if ($num_r1 > $num_r2) {
319 } elseif ($num_r1 < $num_r2) {
331 $result_header->setTitle(sprintf($this->lng->txt(
'result_x'), $result->getResult()));
333 $formula =
new ilTextInputGUI($this->lng->txt(
'formula'),
'formula_' . $result->getResult());
334 $formula->setInfo($this->lng->txt(
'fq_formula_desc'));
335 $formula->setRequired(
true);
336 $formula->setSize(50);
337 $formula->setValue($result->getFormula());
338 $formula->setSuffix(
' = ' . $result->getResult());
341 $suggest_range_for_result !==
'' &&
342 strcmp($suggest_range_for_result, $result->getResult()) == 0 &&
343 strlen($result->substituteFormula($variables,
$results))
345 $result->suggestRange($variables,
$results);
348 $range_min =
new ilNumberInputGUI($this->lng->txt(
'range_min'),
'range_min_' . $result->getResult());
350 $range_min->setSize(3);
351 $range_min->setRequired(
true);
352 $range_min->setValue($result->getRangeMin());
354 $range_max =
new ilNumberInputGUI($this->lng->txt(
'range_max'),
'range_max_' . $result->getResult());
356 $range_max->setSize(3);
357 $range_max->setRequired(
true);
358 $range_max->setValue($result->getRangeMax());
362 $precision =
new ilNumberInputGUI($this->lng->txt(
'precision'),
'precision_' . $result->getResult());
364 $precision->setSize(3);
365 $precision->setMinValue(0);
366 $precision->setInfo($this->lng->txt(
'fq_precision_info'));
367 $precision->setValue($result->getPrecision());
369 $tolerance =
new ilNumberInputGUI($this->lng->txt(
'tolerance'),
'tolerance_' . $result->getResult());
371 $tolerance->setMinValue(0);
372 $tolerance->setMaxValue(100);
373 $tolerance->allowDecimals(
true);
374 $tolerance->setInfo($this->lng->txt(
'tolerance_info'));
375 $tolerance->setValue($result->getTolerance());
378 $suggest_range_button->setHtml(
'<input type="submit" class="btn btn-default" name="cmd[suggestrange_' . $result->getResult() .
']" value="' . $this->lng->txt(
"suggest_range") .
'" />');
380 $sel_result_units =
new ilSelectInputGUI($this->lng->txt(
'unit'),
'unit_' . $result->getResult());
381 $sel_result_units->setOptions(array(0 => $this->lng->txt(
'no_selection')) + $unit_options);
382 $sel_result_units->setInfo($this->lng->txt(
'result_unit_info'));
383 if (is_object($result->getUnit())) {
384 $sel_result_units->setValue($result->getUnit()->getId());
387 $mc_result_units =
new ilMultiSelectInputGUI($this->lng->txt(
'result_units'),
'units_' . $result->getResult());
389 $mc_result_units->setInfo($this->lng->txt(
'result_units_info'));
390 $selectedvalues = array();
391 foreach ($unit_options as $unit_id =>
$txt) {
392 if ($this->
hasResultUnit($result, $unit_id, $result_units)) {
393 $selectedvalues[] = $unit_id;
396 $mc_result_units->setValue($selectedvalues);
398 $result_type =
new ilRadioGroupInputGUI($this->lng->txt(
'result_type_selection'),
'result_type_' . $result->getResult());
401 $no_type =
new ilRadioOption($this->lng->txt(
'no_result_type'), 0);
402 $no_type->
setInfo($this->lng->txt(
'fq_no_restriction_info'));
404 $result_dec =
new ilRadioOption($this->lng->txt(
'result_dec'), 1);
405 $result_dec->
setInfo($this->lng->txt(
'result_dec_info'));
407 $result_frac =
new ilRadioOption($this->lng->txt(
'result_frac'), 2);
408 $result_frac->
setInfo($this->lng->txt(
'result_frac_info'));
410 $result_co_frac =
new ilRadioOption($this->lng->txt(
'result_co_frac'), 3);
411 $result_co_frac->
setInfo($this->lng->txt(
'result_co_frac_info'));
413 $result_type->addOption($no_type);
414 $result_type->addOption($result_dec);
415 $result_type->addOption($result_frac);
416 $result_type->addOption($result_co_frac);
417 $result_type->setValue(strlen($result->getResultType()) ? $result->getResultType() : 0);
419 $points =
new ilNumberInputGUI($this->lng->txt(
'points'),
'points_' . $result->getResult());
421 $points->setRequired(
true);
423 $points->setMinValue(0);
424 $points->setValue(strlen($result->getPoints()) ? $result->getPoints() : 1);
426 $rating_type =
new ilCheckboxInputGUI($this->lng->txt(
'advanced_rating'),
'rating_advanced_' . $result->getResult());
428 $rating_type->setInfo($this->lng->txt(
'advanced_rating_info'));
432 if (!$advanced_rating) {
433 $rating_type->setDisabled(
true);
434 $rating_type->setChecked(
false);
436 $rating_type->setChecked(strlen($result->getRatingSimple()) && $result->getRatingSimple() ? false :
true);
440 $sign =
new ilNumberInputGUI($this->lng->txt(
'rating_sign'),
'rating_sign_' . $result->getResult());
443 $sign->setMinValue(0);
444 $sign->setValue($result->getRatingSign());
445 $rating_type->addSubItem($sign);
447 $value =
new ilNumberInputGUI($this->lng->txt(
'rating_value'),
'rating_value_' . $result->getResult());
450 $value->setMinValue(0);
451 $value->setValue($result->getRatingValue());
452 $rating_type->addSubItem($value);
454 $unit =
new ilNumberInputGUI($this->lng->txt(
'rating_unit'),
'rating_unit_' . $result->getResult());
457 $unit->setMinValue(0);
458 $unit->setValue($result->getRatingUnit());
459 $rating_type->addSubItem($unit);
464 $form->addItem($result_header);
465 $form->addItem($formula);
466 $form->addItem($range_min);
467 $form->addItem($range_max);
468 $form->addItem($suggest_range_button);
469 $form->addItem($precision);
470 $form->addItem($tolerance);
471 $form->addItem($sel_result_units);
472 $form->addItem($mc_result_units);
473 $form->addItem($result_type);
474 $form->addItem($points);
475 $form->addItem($rating_type);
478 $defined_result_vars = array();
479 $quest_vars = array();
481 $defined_result_res = array();
482 $result_vars = array();
484 foreach ($variables as $key =>
$object) {
485 $quest_vars[$key] = $key;
489 $result_vars[$key] = $key;
496 $formula = $tmp_result->getFormula();
498 preg_match_all(
"/([$][v][0-9]*)/", $formula, $form_vars);
499 preg_match_all(
"/([$][r][0-9]*)/", $formula, $form_res);
500 foreach ($form_vars[0] as $res_var) {
501 $defined_result_vars[$res_var] = $res_var;
504 foreach ($form_res[0] as $res_res) {
505 $defined_result_res[$res_res] = $res_res;
510 $result_has_undefined_vars = [];
511 $question_has_unused_vars = [];
512 $result_has_undefined_res = [];
514 if (is_array($quest_vars) && count($quest_vars) > 0) {
515 $result_has_undefined_vars = array_diff($defined_result_vars, $quest_vars);
516 $question_has_unused_vars = array_diff($quest_vars, $defined_result_vars);
519 if (is_array($result_vars) && count($result_vars) > 0) {
520 $result_has_undefined_res = array_diff($defined_result_res, $result_vars);
524 if (count($result_has_undefined_vars) > 0 || count($question_has_unused_vars) > 0) {
525 if (count($result_has_undefined_vars) > 0) {
526 $error_message .= $this->lng->txt(
"res_contains_undef_var") .
'<br>';
528 if (count($question_has_unused_vars) > 0) {
529 $error_message .= $this->lng->txt(
"que_contains_unused_var") .
'<br>';
538 if (is_array($result_has_undefined_res) && count($result_has_undefined_res) > 0) {
539 $error_message .= $this->lng->txt(
"res_contains_undef_res") .
'<br>';
543 if ($save && !$checked) {
547 if ($this->object->getId()) {
549 $hidden->setValue($this->object->getId());
550 $form->addItem($hidden);
555 $form->addCommandButton(
'parseQuestion', $this->lng->txt(
"parseQuestion"));
556 $form->addCommandButton(
'saveReturnFQ', $this->lng->txt(
"save_return"));
557 $form->addCommandButton(
'saveFQ', $this->lng->txt(
"save"));
562 $found_vars = array();
563 $found_results = array();
564 foreach ((array)
$_POST as $key => $value) {
565 if (preg_match(
"/^unit_(\\\$v\d+)$/", $key, $matches)) {
566 array_push($found_vars, $matches[1]);
568 if (preg_match(
"/^unit_(\\\$r\d+)$/", $key, $matches)) {
569 array_push($found_results, $matches[1]);
573 $check = array_merge($found_vars, $found_results);
574 foreach ((array) $form->getItems() as $item) {
575 $postvar = $item->getPostVar();
576 if (preg_match(
"/_\\\$[r|v]\d+/", $postvar, $matches)) {
577 $k = substr(array_shift($matches), 1);
578 if (!in_array($k, $check)) {
579 $form->removeItemByPostVar($postvar);
583 $f =
function ($k, $v) use ($check) {
584 return in_array($v, $check);
587 $variables = array_filter($variables,
$f, ARRAY_FILTER_USE_BOTH);
590 $form->setValuesByPost();
591 $errors = !$form->checkInput();
593 $custom_errors =
false;
594 if (count($variables)) {
595 foreach ($variables as $variable) {
599 $min_range = $form->getItemByPostVar(
'range_min_' . $variable->getVariable());
600 $max_range = $form->getItemByPostVar(
'range_max_' . $variable->getVariable());
601 if ($min_range->getValue() > $max_range->getValue()) {
602 $min_range->setAlert($this->lng->txt(
'err_range'));
603 $max_range->setAlert($this->lng->txt(
'err_range'));
604 $custom_errors =
true;
606 $intPrecision = $form->getItemByPostVar(
'intprecision_' . $variable->getVariable());
607 $decimal_spots = $form->getItemByPostVar(
'precision_' . $variable->getVariable());
608 if ($decimal_spots->getValue() == 0) {
609 if (!$variable->isIntPrecisionValid(
610 $intPrecision->getValue(),
611 $min_range->getValue(),
612 $max_range->getValue()
614 $intPrecision->setAlert($this->lng->txt(
'err_division'));
615 $custom_errors =
true;
626 $min_range = $form->getItemByPostVar(
'range_min_' . $result->getResult());
627 $max_range = $form->getItemByPostVar(
'range_max_' . $result->getResult());
628 if ($min_range->getValue() > $max_range->getValue()) {
629 $min_range->setAlert($this->lng->txt(
'err_range'));
630 $max_range->setAlert($this->lng->txt(
'err_range'));
631 $custom_errors =
true;
635 $formula = $form->getItemByPostVar(
'formula_' . $result->getResult());
636 if (strpos($formula->getValue(), $result->getResult()) !==
false) {
637 $formula->setAlert($this->lng->txt(
'errRecursionInResult'));
638 $custom_errors =
true;
641 $result_unit = $form->getItemByPostVar(
'unit_' . $result->getResult());
642 $rating_advanced = $form->getItemByPostVar(
'rating_advanced_' . $result->getResult());
643 if (((
int) $result_unit->getValue() <= 0) && $rating_advanced->getChecked()) {
644 unset(
$_POST[
'rating_advanced_' . $result->getResult()]);
645 $rating_advanced->setDisabled(
true);
646 $rating_advanced->setChecked(
false);
647 $rating_advanced->setAlert($this->lng->txt(
'err_rating_advanced_not_allowed'));
648 $custom_errors =
true;
649 } elseif ($rating_advanced->getChecked()) {
650 $rating_sign = $form->getItemByPostVar(
'rating_sign_' . $result->getResult());
651 $rating_value = $form->getItemByPostVar(
'rating_value_' . $result->getResult());
652 $rating_unit = $form->getItemByPostVar(
'rating_unit_' . $result->getResult());
654 $percentage = $rating_sign->getValue() + $rating_value->getValue() + $rating_unit->getValue();
655 if ($percentage != 100) {
656 $rating_advanced->setAlert($this->lng->txt(
'err_wrong_rating_advanced'));
657 $custom_errors =
true;
661 preg_match_all(
"/([$][v][0-9]*)/", $formula->getValue(), $form_vars);
662 $result_has_undefined_vars = array_diff($form_vars[0], (array) $found_vars);
663 if (count($result_has_undefined_vars)) {
670 if ($custom_errors && !
$errors) {
674 $form->setValuesByPost();
681 $this->tpl->setVariable(
'QUESTION_DATA', $form->getHTML());
688 if (array_key_exists(
$result->getResult(), $resultunits)) {
689 if (array_key_exists($unit_id, $resultunits[
$result->getResult()])) {
705 $resultunit =
$result->getUnit();
713 if (is_object($resultunit)) {
724 $this->editQuestion();
733 $this->ctrl->getLinkTargetByClass(
'ilLocalUnitConfigurationGUI',
''),
735 'illocalunitconfigurationgui' 744 $old_id =
$_GET[
"q_id"];
747 $ilUser->setPref(
"tst_lastquestiontype", $this->object->getQuestionType());
748 $ilUser->writePref(
"tst_lastquestiontype", $this->object->getQuestionType());
750 $this->
object->saveToDb();
751 $originalexists = $this->
object->_questionExistsInPool($this->object->original_id);
752 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
754 $this->ctrl->redirect($this,
"originalSyncForm");
756 } elseif ($_GET[
"calling_test"]) {
757 require_once
'Modules/Test/classes/class.ilObjTest.php';
759 #var_dump(assQuestion::_questionExistsInTest($this->object->getId(), $test->getTestId())); 760 $q_id = $this->
object->getId();
763 $tree = $DIC[
'tree'];
764 $ilDB = $DIC[
'ilDB'];
765 $ilPluginAdmin = $DIC[
'ilPluginAdmin'];
767 include_once(
"./Modules/Test/classes/class.ilObjTest.php");
768 $_GET[
"ref_id"] = $_GET[
"calling_test"];
771 require_once
'Modules/Test/classes/class.ilTestQuestionSetConfigFactory.php';
774 $new_id =
$test->insertQuestion(
775 $testQuestionSetConfigFactory->getQuestionSetConfig(),
776 $this->
object->getId()
780 if (isset($_REQUEST[
'prev_qid'])) {
781 $test->moveQuestionAfter($this->object->getId() + 1, $_REQUEST[
'prev_qid']);
784 $this->ctrl->setParameter($this,
'q_id', $new_id);
785 $this->ctrl->setParameter($this,
'calling_test', $this->request->getQueryParams()[
"calling_test"]);
787 $this->tpl->setOnScreenMessage(
'success', $this->lng->txt(
"msg_obj_modified"),
true);
790 if ($this->object->getId() != $old_id) {
792 ilUtil::sendSuccess($this->lng->txt(
"msg_obj_modified"),
true);
793 $this->ctrl->redirectByClass(
"ilobjquestionpoolgui",
"questions");
795 if (strcmp(
$_SESSION[
"info"],
"") != 0) {
796 ilUtil::sendSuccess(
$_SESSION[
"info"] .
"<br />" . $this->lng->txt(
"msg_obj_modified"),
true);
798 ilUtil::sendSuccess($this->lng->txt(
"msg_obj_modified"),
true);
803 $ilUser->setPref(
"tst_lastquestiontype", $this->object->getQuestionType());
804 $ilUser->writePref(
"tst_lastquestiontype", $this->object->getQuestionType());
805 $this->
object->saveToDb();
806 $this->editQuestion();
815 $this->editQuestion();
827 $this->
addErrorMessage($this->lng->txt(
"fill_out_all_required_fields"));
861 $graphicalOutput =
false,
862 $result_output =
false,
863 $show_question_only =
true,
864 $show_feedback =
false,
865 $show_correct_solution =
false,
866 $show_manual_scoring =
false,
867 $show_question_text =
true 870 $user_solution = array();
871 if (($active_id > 0) && (!$show_correct_solution)) {
872 $solutions = array();
873 include_once
"./Modules/Test/classes/class.ilObjTest.php";
875 if (is_null(
$pass)) {
879 $user_solution[
"active_id"] = $active_id;
880 $user_solution[
"pass"] =
$pass;
882 foreach ($solutions as $idx => $solution_value) {
883 if (preg_match(
"/^(\\\$v\\d+)$/", $solution_value[
"value1"], $matches)) {
884 $user_solution[$matches[1]] = $solution_value[
"value2"];
885 } elseif (preg_match(
"/^(\\\$r\\d+)$/", $solution_value[
"value1"], $matches)) {
886 if (!array_key_exists($matches[1], $user_solution)) {
887 $user_solution[$matches[1]] = array();
889 $user_solution[$matches[1]][
"value"] = $solution_value[
"value2"];
890 } elseif (preg_match(
"/^(\\\$r\\d+)_unit$/", $solution_value[
"value1"], $matches)) {
891 if (!array_key_exists($matches[1], $user_solution)) {
892 $user_solution[$matches[1]] = array();
894 $user_solution[$matches[1]][
"unit"] = $solution_value[
"value2"];
897 } elseif ($active_id) {
899 include_once
"./Modules/Test/classes/class.ilObjTest.php";
901 if (is_null(
$pass)) {
905 $user_solution = (array) $this->object->getBestSolution($this->object->getSolutionValues($active_id,
$pass));
907 $solutionValues = array();
910 if (is_array($participantsSolution)) {
911 foreach ($participantsSolution as $val1 => $val2) {
912 $solutionValues[] = array(
'value1' => $val1,
'value2' => $val2);
916 $user_solution = (array) $this->object->getBestSolution($solutionValues);
919 $template =
new ilTemplate(
"tpl.il_as_qpl_formulaquestion_output_solution.html",
true,
true,
'Modules/TestQuestionPool');
920 $questiontext = $this->
object->substituteVariables($user_solution, $graphicalOutput,
true, $result_output);
922 $template->setVariable(
"QUESTIONTEXT", $this->object->prepareTextareaOutput($questiontext,
true));
923 $questionoutput = $template->get();
924 $solutiontemplate =
new ilTemplate(
"tpl.il_as_tst_solution_output.html",
true,
true,
"Modules/TestQuestionPool");
926 if (strlen($feedback)) {
932 $solutiontemplate->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
933 $solutiontemplate->setVariable(
"FEEDBACK", $this->object->prepareTextareaOutput($feedback,
true));
935 $solutiontemplate->setVariable(
"SOLUTION_OUTPUT", $questionoutput);
937 $solutionoutput = $solutiontemplate->get();
938 if (!$show_question_only) {
942 return $solutionoutput;
945 public function getPreview($show_question_only =
false, $showInlineFeedback =
false)
947 $user_solution = array();
952 foreach ($solutions as $val1 => $val2) {
953 if (preg_match(
"/^(\\\$v\\d+)$/", $val1, $matches)) {
954 $user_solution[$matches[1]] = $val2;
955 } elseif (preg_match(
"/^(\\\$r\\d+)$/", $val1, $matches)) {
956 if (!array_key_exists($matches[1], $user_solution)) {
957 $user_solution[$matches[1]] = array();
959 $user_solution[$matches[1]][
"value"] = $val2;
960 } elseif (preg_match(
"/^(\\\$r\\d+)_unit$/", $val1, $matches)) {
961 if (!array_key_exists($matches[1], $user_solution)) {
962 $user_solution[$matches[1]] = array();
964 $user_solution[$matches[1]][
"unit"] = $val2;
967 if (preg_match(
"/^(\\\$r\\d+)/", $val1, $matches) && $user_solution[$matches[1]][
"result_type"] == 0) {
973 if (!$this->object->hasRequiredVariableSolutionValues($user_solution)) {
974 $user_solution = $this->
object->getInitialVariableSolutionValues();
981 $template =
new ilTemplate(
"tpl.il_as_qpl_formulaquestion_output.html",
true,
true,
'Modules/TestQuestionPool');
983 $questiontext = $this->
object->substituteVariables($user_solution,
false,
false,
false);
985 $questiontext = $this->
object->substituteVariables(array());
987 $template->setVariable(
"QUESTIONTEXT", $this->object->prepareTextareaOutput($questiontext,
true));
988 $questionoutput = $template->get();
989 if (!$show_question_only) {
993 return $questionoutput;
997 public function getTestOutput($active_id,
$pass, $is_postponed =
false, $use_post_solutions =
false, $show_feedback =
false)
1002 $user_solution = array();
1004 $solutions = (array) $this->object->getTestOutputSolutions($active_id,
$pass);
1006 $actualPassIndex = null;
1007 if ($this->object->getTestPresentationConfig()->isSolutionInitiallyPrefilled()) {
1008 require_once
'Modules/Test/classes/class.ilObjTest.php';
1012 foreach ($solutions as $idx => $solution_value) {
1013 if (preg_match(
"/^(\\\$v\\d+)$/", $solution_value[
"value1"], $matches)) {
1014 if ($this->object->getTestPresentationConfig()->isSolutionInitiallyPrefilled()) {
1015 $this->
object->saveCurrentSolution($active_id, $actualPassIndex, $matches[1], $solution_value[
"value2"],
true);
1018 $user_solution[$matches[1]] = $solution_value[
"value2"];
1019 } elseif (preg_match(
"/^(\\\$r\\d+)$/", $solution_value[
"value1"], $matches)) {
1020 if (!array_key_exists($matches[1], $user_solution)) {
1021 $user_solution[$matches[1]] = array();
1023 $user_solution[$matches[1]][
"value"] = $solution_value[
"value2"];
1024 } elseif (preg_match(
"/^(\\\$r\\d+)_unit$/", $solution_value[
"value1"], $matches)) {
1025 if (!array_key_exists($matches[1], $user_solution)) {
1026 $user_solution[$matches[1]] = array();
1028 $user_solution[$matches[1]][
"unit"] = $solution_value[
"value2"];
1031 if (preg_match(
"/^(\\\$r\\d+)/", $solution_value[
"value1"], $matches) && $user_solution[$matches[1]][
"result_type"] == 0) {
1038 $solutions = $this->
object->getSolutionValues($active_id,
$pass,
true);
1039 foreach ($solutions as $idx => $solution_value) {
1040 if (preg_match(
"/^(\\\$v\\d+)$/", $solution_value[
"value1"], $matches)) {
1041 $user_solution[$matches[1]] = $solution_value[
"value2"];
1046 if (!$this->object->hasRequiredVariableSolutionValues($user_solution)) {
1047 foreach ($this->object->getInitialVariableSolutionValues() as $val1 => $val2) {
1048 $this->
object->saveCurrentSolution($active_id,
$pass, $val1, $val2,
true);
1053 $template =
new ilTemplate(
"tpl.il_as_qpl_formulaquestion_output.html",
true,
true,
'Modules/TestQuestionPool');
1055 $questiontext = $this->
object->substituteVariables($user_solution);
1057 $template->setVariable(
"QUESTIONTEXT", $this->object->prepareTextareaOutput($questiontext,
true));
1059 $questionoutput = $template->get();
1060 $pageoutput = $this->
outQuestionPage(
"", $is_postponed, $active_id, $questionoutput);
hasCorrectSolution($activeId, $passIndex)
This class represents an option in a radio group.
static getInstance($identifier)
addBasicQuestionFormProperties($form)
Add basic question form properties: assessment: title, author, description, question, working time.
static _getPass($active_id)
Retrieves the actual pass of a given user for a given test.
addErrorMessage($errormessage)
callNewIdListeners($a_new_id)
Call the new id listeners.
addTarget( $a_text, $a_link, $a_cmd="", $a_cmdClass="", $a_frame="", $a_activate=false, $a_dir_text=false)
getQuestionTemplate()
get question template
const CSS_CLASS_FEEDBACK_CORRECT
setInfo($a_info)
Set Info.
populateTaxonomyFormSection(ilPropertyFormGUI $form)
getUseIntermediateSolution()
Get if intermediate solution should be used for solution output.
static stripOnlySlashes($a_str)
strip slashes if magic qoutes is enabled
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
getILIASPage($html="")
Returns the ILIAS Page around a question.
const CSS_CLASS_FEEDBACK_WRONG
Basic GUI class for assessment questions.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
static _questionExistsInTest($question_id, $test_id)
saveTaxonomyAssignments()
addSaveOnEnterOnLoadCode()
This class represents a non editable value in a property form.
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
output question page
__construct(Container $dic, ilPlugin $plugin)
getGenericFeedbackOutput($active_id, $pass)
Returns the answer specific feedback for the question.
static _getUsePreviousAnswers($active_id, $user_active_user_setting=false)
Returns if the previous results should be hidden for a learner.
static _isWriteable($question_id, $user_id)
Returns true if the question is writeable by a certain user.