4 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
5 include_once
"./Modules/TestQuestionPool/classes/class.assFormulaQuestionResult.php";
6 include_once
"./Modules/TestQuestionPool/classes/class.assFormulaQuestionVariable.php";
7 include_once
"./Modules/TestQuestionPool/classes/class.ilUnitConfigurationRepository.php";
8 include_once
"./Modules/Test/classes/inc.AssessmentConstants.php";
9 include_once
"./Modules/TestQuestionPool/interfaces/interface.iQuestionCondition.php";
10 require_once
'./Modules/TestQuestionPool/classes/class.ilUserQuestionResult.php';
49 $this->variables = array();
50 $this->results = array();
51 $this->resultunits = array();
57 $this->variables = array();
67 if (array_key_exists($variable, $this->variables)) {
68 return $this->variables[$variable];
75 $this->variables[$variable->getVariable()] = $variable;
80 $this->results = array();
90 if (array_key_exists(
$result, $this->results)) {
103 $this->resultunits[
$result->getResult()] = array();
104 if ((!is_object(
$result)) || (!is_array($unit_ids))) {
107 foreach ($unit_ids as
$id) {
108 if (is_numeric($id) && ($id > 0)) {
116 if (is_object(
$result) && is_object($unit)) {
117 if (!is_array($this->resultunits[
$result->getResult()])) {
118 $this->resultunits[
$result->getResult()] = array();
120 $this->resultunits[
$result->getResult()][$unit->getId()] = $unit;
127 return $this->resultunits[
$result->getResult()];
136 if (array_key_exists($unit_id, $this->resultunits[
$result->getResult()])) {
148 if (preg_match_all(
"/(\\\$v\\d+)/ims", $this->
getQuestion(), $matches)) {
149 foreach ($matches[1] as $variable) {
155 if (preg_match_all(
"/(\\\$r\\d+)/ims", $this->
getQuestion(), $rmatches)) {
156 foreach ($rmatches[1] as
$result) {
165 if (preg_match_all(
"/(\\\$v\\d+)/ims", $this->
getQuestion(), $matches)) {
166 if ((count(array_unique($matches[1]))) != count($matches[1])) {
175 if (preg_match_all(
"/(\\\$r\\d+)/ims", $this->
getQuestion(), $rmatches)) {
176 if ((count(array_unique($rmatches[1]))) != count($rmatches[1])) {
189 $resObjects = array();
192 if (preg_match_all(
"/(\\\$r\\d+)/ims", $questionText, $matches)) {
193 foreach ($matches[1] as $resultKey) {
194 $resObjects[] = $this->
getResult($resultKey);
207 $varObjects = array();
210 if (preg_match_all(
"/(\\\$v\\d+)/ims", $questionText, $matches)) {
211 foreach ($matches[1] as $variableKey) {
226 if (!isset($userSolution[$varObj->getVariable()])) {
230 if (!strlen($userSolution[$varObj->getVariable()])) {
247 $variableSolutionValues = array();
250 $variableSolutionValues[$varObj->getVariable()] = $varObj->getValue();
253 return $variableSolutionValues;
264 public function substituteVariables(array $userdata, $graphicalOutput =
false, $forsolution =
false, $result_output =
false)
266 if ((count($this->results) == 0) && (count($this->variables) == 0)) {
273 if (isset($userdata[$varObj->getVariable()]) && strlen($userdata[$varObj->getVariable()])) {
274 $varObj->setValue($userdata[$varObj->getVariable()]);
277 $unit = (is_object($varObj->getUnit())) ? $varObj->getUnit()->getUnit() :
"";
278 $val = (strlen($varObj->getValue()) > 8) ? strtoupper(sprintf(
"%e", $varObj->getValue())) : $varObj->getValue();
280 $text = preg_replace(
"/\\$" . substr($varObj->getVariable(), 1) .
"(?![0-9]+)/", $val .
" " . $unit .
"\\1", $text);
285 if (preg_match_all(
"/(\\\$r\\d+)/ims", $this->
getQuestion(), $rmatches)) {
286 foreach ($rmatches[1] as
$result) {
290 $user_data[
$result][
'result_type'] = $resObj->getResultType();
298 if (is_array($userdata)) {
299 if (is_array($userdata[$result])) {
300 if (
false && $forsolution && $result_output) {
302 $value = sprintf(
"%." . $resObj->getPrecision() .
"f", $value_org);
305 if (is_array($value)) {
306 $frac_helper = $value[1];
312 $value = $userdata[
$result][
"value"];
314 $value =
' value="' . $userdata[
$result][
"value"] .
'"';
321 $value = sprintf(
"%." . $resObj->getPrecision() .
"f", $value);
325 if (is_array($value)) {
326 $frac_helper = $value[1];
329 $value =
' value="' . $value .
'"';
334 $use_precision = !($userdata == null && $graphicalOutput ==
false && $forsolution ==
false && $result_output ==
false);
336 $val = $resObj->calculateFormula($this->
getVariables(), $this->
getResults(), parent::getId(), $use_precision);
340 $val = $resObj->convertDecimalToCoprimeFraction($val);
341 if (is_array($val)) {
342 $frac_helper = $val[1];
346 $val = sprintf(
"%." . $resObj->getPrecision() .
"f", $val);
347 $val = (strlen($val) > 8) ? strtoupper(sprintf(
"%e", $val)) : $val;
349 $value =
' value="' . $val .
'"';
356 $input =
'<input class="ilc_qinput_TextInput" type="text" spellcheck="false" autocomplete="off" autocorrect="off" autocapitalize="off" name="result_' . $result .
'"' . $value .
' />';
362 if (is_array($userdata)) {
364 if ($userdata[$result][
"unit"] == $unit->getId()) {
365 $units = $unit->getUnit();
369 if ($resObj->getUnit()) {
370 $units = $resObj->getUnit()->getUnit();
374 $units =
'<select name="result_' . $result .
'_unit">';
375 $units .=
'<option value="-1">' . $this->lng->txt(
"select_unit") .
'</option>';
377 $units .=
'<option value="' . $unit->getId() .
'"';
378 if ((is_array($userdata[$result])) && (strlen($userdata[$result][
"unit"]))) {
379 if ($userdata[$result][
"unit"] == $unit->getId()) {
380 $units .=
' selected="selected"';
383 $units .=
'>' . $unit->getUnit() .
'</option>';
385 $units .=
'</select>';
390 switch ($resObj->getResultType()) {
392 $units .=
' ' . $this->lng->txt(
'expected_result_type') .
': ' . $this->lng->txt(
'result_dec');
395 if (strlen($frac_helper)) {
396 $units .=
' ≈ ' . $frac_helper .
', ';
397 } elseif (is_array($userdata) && isset($userdata[$result]) && strlen($userdata[$result][
"frac_helper"])) {
398 if (!preg_match(
'-/-', $value)) {
399 $units .=
' ≈ ' . $userdata[
$result][
"frac_helper"] .
', ';
402 $units .=
' ' . $this->lng->txt(
'expected_result_type') .
': ' . $this->lng->txt(
'result_frac');
405 if (strlen($frac_helper)) {
406 $units .=
' ≈ ' . $frac_helper .
', ';
407 } elseif (is_array($userdata) && isset($userdata[$result]) && strlen($userdata[$result][
"frac_helper"])) {
408 if (!preg_match(
'-/-', $value)) {
409 $units .=
' ≈ ' . $userdata[
$result][
"frac_helper"] .
', ';
412 $units .=
' ' . $this->lng->txt(
'expected_result_type') .
': ' . $this->lng->txt(
'result_co_frac');
418 if ($graphicalOutput) {
421 if (is_array($userdata) && is_array($userdata[$result])) {
422 if ($userdata[$result][
"unit"] > 0) {
426 if (isset($userdata[$result][
"value"])) {
427 $user_value = $userdata[
$result][
"value"];
431 $template =
new ilTemplate(
"tpl.il_as_qpl_formulaquestion_output_solution_image.html",
true,
true,
'Modules/TestQuestionPool');
433 if ($resObj->isCorrect($this->getVariables(), $this->
getResults(), $user_value, $resunit)) {
434 $template->setCurrentBlock(
"icon_ok");
436 $template->setVariable(
"TEXT_OK", $this->lng->txt(
"answer_is_right"));
437 $template->parseCurrentBlock();
439 $template->setCurrentBlock(
"icon_not_ok");
441 $template->setVariable(
"TEXT_NOT_OK", $this->lng->txt(
"answer_is_wrong"));
442 $template->parseCurrentBlock();
444 $checkSign = $template->get();
447 if ($result_output) {
448 $template =
new ilTemplate(
"tpl.il_as_qpl_formulaquestion_output_solution_result.html",
true,
true,
'Modules/TestQuestionPool');
450 if (is_array($userdata)) {
451 $found = $resObj->getResultInfo($this->
getVariables(), $this->
getResults(), $userdata[$resObj->getResult()][
"value"], $userdata[$resObj->getResult()][
"unit"], $this->
getUnitrepository()->getUnits());
453 $found = $resObj->getResultInfo($this->
getVariables(), $this->
getResults(), $resObj->calculateFormula($this->getVariables(), $this->
getResults(), parent::getId()), is_object($resObj->getUnit()) ? $resObj->getUnit()->getId() : null, $this->
getUnitrepository()->getUnits());
456 if ($resObj->getRatingSimple()) {
458 $resulttext .=
"n/a";
460 $resulttext .= $found[
'points'] .
" " . (($found[
'points'] == 1) ? $this->lng->txt(
'point') : $this->lng->txt(
'points'));
463 $resulttext .= $this->lng->txt(
"rated_sign") .
" " . (($found[
'sign']) ? $found[
'sign'] : 0) .
" " . (($found[
'sign'] == 1) ? $this->lng->txt(
'point') : $this->lng->txt(
'points')) .
", ";
464 $resulttext .= $this->lng->txt(
"rated_value") .
" " . (($found[
'value']) ? $found[
'value'] : 0) .
" " . (($found[
'value'] == 1) ? $this->lng->txt(
'point') : $this->lng->txt(
'points')) .
", ";
465 $resulttext .= $this->lng->txt(
"rated_unit") .
" " . (($found[
'unit']) ? $found[
'unit'] : 0) .
" " . (($found[
'unit'] == 1) ? $this->lng->txt(
'point') : $this->lng->txt(
'points'));
469 $template->setVariable(
"RESULT_OUTPUT", $resulttext);
471 $resultOutput = $template->get();
473 $text = preg_replace(
"/\\\$" . substr($result, 1) .
"(?![0-9]+)/", $input .
" " . $units .
" " . $checkSign .
" " . $resultOutput .
" " .
"\\1", $text);
488 $resultunit =
$result->getUnit();
490 foreach ($result_units as $unit) {
491 if (is_object($resultunit)) {
492 if ($resultunit->getId() != $unit->getId()) {
493 if ($resultunit->getBaseUnit() && $unit->getBaseUnit()) {
494 if ($resultunit->getBaseUnit() == $unit->getBaseUnit()) {
498 if ($resultunit->getBaseUnit()) {
499 if ($resultunit->getBaseUnit() == $unit->getId()) {
503 if ($unit->getBaseUnit()) {
504 if ($unit->getBaseUnit() == $resultunit->getId()) {
520 if (($this->title) and ($this->author) and ($this->question) and ($this->
getMaximumPoints() > 0)) {
534 $ilDB = $DIC[
'ilDB'];
538 $affectedRows =
$ilDB->manipulateF(
540 DELETE FROM il_qpl_qst_fq_var 541 WHERE question_fi = %s",
543 array($this->
getId())
546 foreach ($this->variables as $variable) {
547 $next_id =
$ilDB->nextId(
'il_qpl_qst_fq_var');
551 'variable_id' => array(
'integer', $next_id),
552 'question_fi' => array(
'integer', $this->
getId()),
553 'variable' => array(
'text', $variable->getVariable()),
554 'range_min' => array(
'float', ((strlen($variable->getRangeMin())) ? $variable->getRangeMin() : 0.0)),
555 'range_max' => array(
'float', ((strlen($variable->getRangeMax())) ? $variable->getRangeMax() : 0.0)),
556 'unit_fi' => array(
'integer', (is_object($variable->getUnit()) ? (
int) $variable->getUnit()->getId() : 0)),
557 'varprecision' => array(
'integer', (
int) $variable->getPrecision()),
558 'intprecision' => array(
'integer', (
int) $variable->getIntprecision()),
559 'range_min_txt' => array(
'text', $variable->getRangeMinTxt()),
560 'range_max_txt' => array(
'text', $variable->getRangeMaxTxt())
565 $affectedRows =
$ilDB->manipulateF(
566 "DELETE FROM il_qpl_qst_fq_res WHERE question_fi = %s",
568 array($this->
getId())
571 foreach ($this->results as
$result) {
572 $next_id =
$ilDB->nextId(
'il_qpl_qst_fq_res');
573 if (is_object($result->getUnit())) {
574 $tmp_result_unit = $result->getUnit()->getId();
576 $tmp_result_unit = null;
579 $formula = str_replace(
",",
".", $result->getFormula());
581 $ilDB->insert(
"il_qpl_qst_fq_res", array(
582 "result_id" => array(
"integer", $next_id),
583 "question_fi" => array(
"integer", $this->
getId()),
584 "result" => array(
"text", $result->getResult()),
585 "range_min" => array(
"float", ((strlen($result->getRangeMin())) ? $result->getRangeMin() : 0)),
586 "range_max" => array(
"float", ((strlen($result->getRangeMax())) ? $result->getRangeMax() : 0)),
587 "tolerance" => array(
"float", ((strlen($result->getTolerance())) ? $result->getTolerance() : 0)),
588 "unit_fi" => array(
"integer", (
int) $tmp_result_unit),
589 "formula" => array(
"clob", $formula),
590 "resprecision" => array(
"integer", $result->getPrecision()),
591 "rating_simple" => array(
"integer", ($result->getRatingSimple()) ? 1 : 0),
592 "rating_sign" => array(
"float", ($result->getRatingSimple()) ? 0 : $result->getRatingSign()),
593 "rating_value" => array(
"float", ($result->getRatingSimple()) ? 0 : $result->getRatingValue()),
594 "rating_unit" => array(
"float", ($result->getRatingSimple()) ? 0 : $result->getRatingUnit()),
595 "points" => array(
"float", $result->getPoints()),
596 "result_type" => array(
'integer', (
int) $result->getResultType()),
597 "range_min_txt" => array(
"text", $result->getRangeMinTxt()),
598 "range_max_txt" => array(
"text", $result->getRangeMaxTxt())
603 $affectedRows =
$ilDB->manipulateF(
604 "DELETE FROM il_qpl_qst_fq_res_unit WHERE question_fi = %s",
606 array($this->
getId())
608 foreach ($this->results as $result) {
610 $next_id =
$ilDB->nextId(
'il_qpl_qst_fq_res_unit');
611 $affectedRows =
$ilDB->manipulateF(
612 "INSERT INTO il_qpl_qst_fq_res_unit (result_unit_id, question_fi, result, unit_fi) VALUES (%s, %s, %s, %s)",
613 array(
'integer',
'integer',
'text',
'integer'),
617 $result->getResult(),
634 $ilDB = $DIC[
'ilDB'];
637 "SELECT qpl_questions.* FROM qpl_questions WHERE question_id = %s",
643 $this->
setId($question_id);
666 include_once(
"./Services/RTE/classes/class.ilRTE.php");
672 "SELECT * FROM il_qpl_qst_fq_var WHERE question_fi = %s",
679 $varObj->setRangeMinTxt(
$data[
'range_min_txt']);
680 $varObj->setRangeMaxTxt(
$data[
'range_max_txt']);
686 "SELECT * FROM il_qpl_qst_fq_res WHERE question_fi = %s",
692 $resObj =
new assFormulaQuestionResult(
$data[
"result"],
$data[
"range_min"],
$data[
"range_max"],
$data[
"tolerance"], $this->
getUnitrepository()->getUnit(
$data[
"unit_fi"]),
$data[
"formula"],
$data[
"points"],
$data[
"resprecision"],
$data[
"rating_simple"],
$data[
"rating_sign"],
$data[
"rating_value"],
$data[
"rating_unit"]);
693 $resObj->setResultType(
$data[
'result_type']);
694 $resObj->setRangeMinTxt(
$data[
'range_min_txt']);
695 $resObj->setRangeMaxTxt(
$data[
'range_max_txt']);
702 "SELECT * FROM il_qpl_qst_fq_res_unit WHERE question_fi = %s",
714 parent::loadFromDb($question_id);
723 if ($this->
id <= 0) {
728 $this_id = $this->
getId();
732 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
736 if ((
int) $testObjId > 0) {
737 $clone->setObjId($testObjId);
757 $clone->unitrepository->cloneUnits($this_id, $clone->getId());
760 $clone->copyPageOfQuestion($this_id);
762 $clone->copyXHTMLMediaObjectsOfQuestion($this_id);
763 $clone->onDuplicate($thisObjId, $this_id, $clone->getObjId(), $clone->getId());
774 if ($this->
id <= 0) {
780 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
783 $source_questionpool_id = $this->
getObjId();
784 $clone->setObjId($target_questionpool_id);
790 $clone->unitrepository->cloneUnits(
$original_id, $clone->getId());
797 $clone->onCopy($source_questionpool_id,
$original_id, $clone->getObjId(), $clone->getId());
804 if ($this->
id <= 0) {
809 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
812 $sourceParentId = $this->
getObjId();
818 $clone->setObjId($targetParentId);
820 if ($targetQuestionTitle) {
821 $clone->setTitle($targetQuestionTitle);
826 $clone->copyPageOfQuestion($sourceQuestionId);
828 $clone->copyXHTMLMediaObjectsOfQuestion($sourceQuestionId);
830 $clone->onCopy($sourceParentId, $sourceQuestionId, $clone->getObjId(), $clone->getId());
842 foreach ($this->results as
$result) {
843 $points += $result->getPoints();
858 if (is_null(
$pass)) {
862 $user_solution = array();
863 foreach ($solutions as $idx => $solution_value) {
864 if (preg_match(
"/^(\\\$v\\d+)$/", $solution_value[
"value1"], $matches)) {
865 $user_solution[$matches[1]] = $solution_value[
"value2"];
866 $varObj = $this->
getVariable($solution_value[
"value1"]);
867 $varObj->setValue($solution_value[
"value2"]);
868 } elseif (preg_match(
"/^(\\\$r\\d+)$/", $solution_value[
"value1"], $matches)) {
869 if (!array_key_exists($matches[1], $user_solution)) {
870 $user_solution[$matches[1]] = array();
872 $user_solution[$matches[1]][
"value"] = $solution_value[
"value2"];
873 } elseif (preg_match(
"/^(\\\$r\\d+)_unit$/", $solution_value[
"value1"], $matches)) {
874 if (!array_key_exists($matches[1], $user_solution)) {
875 $user_solution[$matches[1]] = array();
877 $user_solution[$matches[1]][
"unit"] = $solution_value[
"value2"];
884 $points += $result->getReachedPoints($this->
getVariables(), $this->
getResults(), $user_solution[$result->getResult()][
"value"], $user_solution[$result->getResult()][
"unit"], $this->unitrepository->getUnits());
896 $v = isset($user_solution[$result->getResult()]) ? $user_solution[$result->getResult()] : null;
897 $u = isset($user_solution[$result->getResult() .
'_unit']) ? $user_solution[$result->getResult() .
'_unit'] : null;
899 $points += $result->getReachedPoints(
904 $this->unitrepository->getUnits()
915 $submittedValue = str_replace(
',',
'.', $submittedValue);
917 if (is_numeric($submittedValue)) {
921 if (preg_match(
'/^[-+]{0,1}\d+\/\d+$/', $submittedValue)) {
938 $ilDB = $DIC[
'ilDB'];
940 if (is_null(
$pass)) {
941 include_once
"./Modules/Test/classes/class.ilObjTest.php";
945 $entered_values =
false;
947 $this->
getProcessLocker()->executeUserSolutionUpdateLockOperation(
function () use (&$entered_values,
$ilDB, $active_id,
$pass, $authorized) {
949 foreach ($solutionSubmit as $key => $value) {
951 if (preg_match(
"/^result_(\\\$r\\d+)$/", $key, $matches)) {
952 if (strlen($value)) {
953 $entered_values =
true;
956 $queryResult =
"SELECT solution_id FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s AND authorized = %s AND " .
$ilDB->like(
'value1',
'clob', $matches[1]);
958 if ($this->
getStep() !== null) {
959 $queryResult .=
" AND step = " .
$ilDB->quote((
int) $this->
getStep(),
'integer') .
" ";
964 array(
'integer',
'integer',
'integer',
'integer'),
965 array($active_id,
$pass, $this->
getId(), (
int) $authorized)
970 "DELETE FROM tst_solutions WHERE solution_id = %s AND authorized = %s",
971 array(
'integer',
'integer'),
972 array($row[
'solution_id'], (
int) $authorized)
978 } elseif (preg_match(
"/^result_(\\\$r\\d+)_unit$/", $key, $matches)) {
979 $queryResultUnit =
"SELECT solution_id FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s AND authorized = %s AND " .
$ilDB->like(
'value1',
'clob', $matches[1] .
"_unit");
981 if ($this->
getStep() !== null) {
982 $queryResultUnit .=
" AND step = " .
$ilDB->quote((
int) $this->
getStep(),
'integer') .
" ";
987 array(
'integer',
'integer',
'integer',
'integer'),
988 array($active_id,
$pass, $this->
getId(), (
int) $authorized)
993 "DELETE FROM tst_solutions WHERE solution_id = %s AND authorized = %s",
994 array(
'integer',
'integer'),
995 array($row[
'solution_id'], (
int) $authorized)
1005 if ($entered_values) {
1006 include_once(
"./Modules/Test/classes/class.ilObjAssessmentFolder.php");
1011 include_once(
"./Modules/Test/classes/class.ilObjAssessmentFolder.php");
1030 $ilDB = $DIC[
'ilDB'];
1033 'authorized' =>
false,
1034 'intermediate' =>
false 1038 SELECT authorized, COUNT(*) cnt 1040 WHERE active_fi = " .
$ilDB->quote($activeId,
'integer') .
" 1041 AND question_fi = " .
$ilDB->quote($this->
getId(),
'integer') .
" 1042 AND pass = " .
$ilDB->quote(
$pass,
'integer') .
" 1043 AND value1 like '\$r%' 1044 AND value2 is not null 1048 if ($this->
getStep() !== null) {
1059 if ($row[
'authorized']) {
1060 $return[
'authorized'] = $row[
'cnt'] > 0;
1062 $return[
'intermediate'] = $row[
'cnt'] > 0;
1079 $ilDB = $DIC[
'ilDB'];
1082 DELETE FROM tst_solutions 1083 WHERE active_fi = " .
$ilDB->quote($activeId,
'integer') .
" 1084 AND question_fi = " .
$ilDB->quote($this->
getId(),
'integer') .
" 1085 AND pass = " .
$ilDB->quote(
$pass,
'integer') .
" 1086 AND value1 like '\$r%' 1089 if ($this->
getStep() !== null) {
1104 if (preg_match(
"/^result_(\\\$r\\d+)$/", $key, $matches)) {
1105 $userSolution[$matches[1]] = $val;
1106 } elseif (preg_match(
"/^result_(\\\$r\\d+)_unit$/", $key, $matches)) {
1107 $userSolution[$matches[1] .
"_unit"] = $val;
1120 return "assFormulaQuestion";
1149 $ilDB = $DIC[
'ilDB'];
1151 $affectedRows =
$ilDB->manipulateF(
1152 "DELETE FROM il_qpl_qst_fq_var WHERE question_fi = %s",
1157 $affectedRows =
$ilDB->manipulateF(
1158 "DELETE FROM il_qpl_qst_fq_res WHERE question_fi = %s",
1163 $affectedRows =
$ilDB->manipulateF(
1164 "DELETE FROM il_qpl_qst_fq_res_unit WHERE question_fi = %s",
1169 $affectedRows =
$ilDB->manipulateF(
1170 "DELETE FROM il_qpl_qst_fq_ucat WHERE question_fi = %s",
1175 $affectedRows =
$ilDB->manipulateF(
1176 "DELETE FROM il_qpl_qst_fq_unit WHERE question_fi = %s",
1188 $text = parent::getRTETextWithMediaObjects();
1197 parent::setExportDetailsXLS($worksheet, $startrow, $active_id,
$pass);
1202 foreach ($solution as $solutionvalue) {
1203 $worksheet->setCell($startrow +
$i, 0, $solutionvalue[
"value1"]);
1204 $worksheet->setBold($worksheet->getColumnCoord(0) . ($startrow +
$i));
1205 if (strpos($solutionvalue[
"value1"],
"_unit")) {
1207 if (is_object($unit)) {
1208 $worksheet->setCell($startrow +
$i, 2, $unit->getUnit());
1211 $worksheet->setCell($startrow +
$i, 2, $solutionvalue[
"value2"]);
1213 if (preg_match(
"/(\\\$v\\d+)/", $solutionvalue[
"value1"], $matches)) {
1214 $var = $this->
getVariable($solutionvalue[
"value1"]);
1215 if (is_object($var) && (is_object($var->getUnit()))) {
1216 $worksheet->setCell($startrow +
$i, 3, $var->getUnit()->getUnit());
1222 return $startrow +
$i + 1;
1232 $user_solution = array();
1234 foreach ($solutions as $idx => $solution_value) {
1235 if (preg_match(
"/^(\\\$v\\d+)$/", $solution_value[
"value1"], $matches)) {
1236 $user_solution[$matches[1]] = $solution_value[
"value2"];
1238 $varObj->setValue($solution_value[
"value2"]);
1239 } elseif (preg_match(
"/^(\\\$r\\d+)$/", $solution_value[
"value1"], $matches)) {
1240 if (!array_key_exists($matches[1], $user_solution)) {
1241 $user_solution[$matches[1]] = array();
1243 $user_solution[$matches[1]][
"value"] = $solution_value[
"value2"];
1244 } elseif (preg_match(
"/^(\\\$r\\d+)_unit$/", $solution_value[
"value1"], $matches)) {
1245 if (!array_key_exists($matches[1], $user_solution)) {
1246 $user_solution[$matches[1]] = array();
1248 $user_solution[$matches[1]][
"unit"] = $solution_value[
"value2"];
1254 if (is_object($result->getUnit())) {
1255 $user_solution[$result->getResult()][
"unit"] = $result->getUnit()->getId();
1256 $user_solution[$result->getResult()][
"value"] = $resVal;
1257 } elseif ($result->getUnit() == null) {
1261 $available_units = $result->getAvailableResultUnits(parent::getId());
1262 $result_name = $result->getResult();
1264 if ($available_units[$result_name] != null) {
1265 $check_unit = in_array($user_solution[$result_name][
'unit'], $available_units[$result_name]);
1268 if ($check_unit ==
true) {
1274 $user_solution[$result->getResult()][
"value"] =
ilMath::_div($resVal, $unit_factor, 55);
1276 $user_solution[$result->getResult()][
"value"] = 0;
1282 if (is_array($value)) {
1283 $user_solution[$result->getResult()][
"value"] = $value[0];
1284 $user_solution[$result->getResult()][
"frac_helper"] = $value[1];
1286 $user_solution[$result->getResult()][
"value"] = $value;
1287 $user_solution[$result->getResult()][
"frac_helper"] = null;
1290 $user_solution[$result->getResult()][
"value"] = round($user_solution[$result->getResult()][
"value"], $result->getPrecision());
1300 return $user_solution;
1306 $this->unitrepository->setConsumerId($this->
getId());
1319 return parent::__get($value);
1345 $solutionSubmit = array();
1346 foreach (
$_POST as $k => $v) {
1347 if (preg_match(
"/^result_(\\\$r\\d+)$/", $k)) {
1348 $solutionSubmit[$k] = $v;
1349 } elseif (preg_match(
"/^result_(\\\$r\\d+)_unit$/", $k)) {
1350 $solutionSubmit[$k] = $v;
1353 return $solutionSubmit;
1359 if (preg_match(
"/^result_(\\\$r\\d+)$/", $key)) {
1364 } elseif (preg_match(
"/^result_(\\\$r\\d+)_unit$/", $key)) {
1382 require_once
"./Modules/TestQuestionPool/classes/class.ilOperatorsExpressionMapping.php";
1411 $ilDB = $DIC[
'ilDB'];
1414 $maxStep = $this->lookupMaxStep($active_id,
$pass);
1416 if ($maxStep !== null) {
1418 "SELECT value1, value2 FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s AND step = %s",
1419 array(
"integer",
"integer",
"integer",
'integer'),
1420 array($active_id,
$pass, $this->
getId(), $maxStep)
1424 "SELECT value1, value2 FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s",
1425 array(
"integer",
"integer",
"integer"),
1431 if (strstr($row[
"value1"],
'$r') && $row[
"value2"] != null) {
1432 $result->addKeyValue(str_replace(
'$r',
"", $row[
"value1"]), $row[
"value2"]);
static logAction($logtext="", $active_id="", $question_id="")
Logs an action into the Test&Assessment log.
getId()
Gets the id of the assQuestion object.
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
static getInstance($identifier)
static _getOriginalId($question_id)
Returns the original id of a question.
const PercentageResultExpression
setSuggestedSolution($solution_id="", $subquestion_index=0, $is_import=false)
Sets a suggested solution for the question.
Class iQuestionCondition.
static _getPass($active_id)
Retrieves the actual pass of a given user for a given test.
Abstract basic class which is to be extended by the concrete assessment question type classes...
ensureNonNegativePoints($points)
getSolutionValues($active_id, $pass=null, $authorized=true)
Loads solutions of a given user from the database an returns it.
Class ilUnitConfigurationRepository.
getSolutionMaxPass($active_id)
Returns the maximum pass a users question solution.
static _div($left_operand, $right_operand, $scale=50)
setEstimatedWorkingTime($hour=0, $min=0, $sec=0)
Sets the estimated working time of a question from given hour, minute and second. ...
getParticipantsSolution()
getUserQuestionResult($active_id, $pass)
Get the user solution for a question by active_id and the test pass.
setAdditionalContentEditingMode($additinalContentEditingMode)
setter for additional content editing mode for this question
static _replaceMediaObjectImageSrc($a_text, $a_direction=0, $nic=IL_INST_ID)
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
getObjId()
Get the object id of the container object.
setParticipantsSolution($participantSolution)
static _getLogLanguage()
retrieve the log language for assessment logging
setAuthor($author="")
Sets the authors name of the assQuestion object.
static _enabledAssessmentLogging()
check wether assessment logging is enabled or not
purifyAndPrepareTextAreaOutput(string $content)
Class ilUserQuestionResult.
saveCurrentSolution($active_id, $pass, $value1, $value2, $authorized=true, $tstamp=null)
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
const NumericResultExpression
getQuestion()
Gets the question string of the question object.
static getOperatorsByExpression($expression)
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
deductHintPointsFromReachedPoints(ilAssQuestionPreviewSession $previewSession, $reachedPoints)
setPoints($a_points)
Sets the maximum available points for the question.
saveQuestionDataToDb($original_id="")
setQuestion($question="")
Sets the question string of the question object.
__construct(Container $dic, ilPlugin $plugin)
setOriginalId($original_id)
setLifecycle(ilAssQuestionLifecycle $lifecycle)
setTitle($title="")
Sets the title string of the assQuestion object.
setObjId($obj_id=0)
Set the object id of the container object.
setComment($comment="")
Sets the comment string of the assQuestion object.
static getDraftInstance()
setOwner($owner="")
Sets the creator/owner ID of the assQuestion object.
const EmptyAnswerExpression