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';
50 $this->variables = array();
51 $this->results = array();
52 $this->resultunits = array();
59 $this->variables = array();
69 if(array_key_exists($variable, $this->variables))
71 return $this->variables[$variable];
78 $this->variables[$variable->getVariable()] = $variable;
83 $this->results = array();
93 if(array_key_exists(
$result, $this->results))
107 $this->resultunits[
$result->getResult()] = array();
108 if((!is_object(
$result)) || (!is_array($unit_ids)))
return;
109 foreach($unit_ids as
$id)
117 if(is_object(
$result) && is_object($unit))
119 if(!is_array($this->resultunits[
$result->getResult()]))
121 $this->resultunits[
$result->getResult()] = array();
123 $this->resultunits[
$result->getResult()][$unit->getId()] = $unit;
132 return $this->resultunits[
$result->getResult()];
144 if(array_key_exists($unit_id, $this->resultunits[
$result->getResult()]))
157 if(preg_match_all(
"/(\\\$v\\d+)/ims", $this->
getQuestion(), $matches))
159 foreach($matches[1] as $variable)
166 if(preg_match_all(
"/(\\\$r\\d+)/ims", $this->
getQuestion(), $rmatches))
168 foreach($rmatches[1] as
$result)
178 if(preg_match_all(
"/(\\\$v\\d+)/ims", $this->
getQuestion(), $matches))
180 if((count(array_unique($matches[1]))) != count($matches[1]))
return false;
187 if(preg_match_all(
"/(\\\$r\\d+)/ims", $this->
getQuestion(), $rmatches))
189 if((count(array_unique($rmatches[1]))) != count($rmatches[1]))
return false;
198 if((count($this->results) == 0) && (count($this->variables) == 0))
202 if(preg_match_all(
"/(\\\$r\\d+)/ims", $this->
getQuestion(), $rmatches))
204 foreach($rmatches[1] as
$result)
210 if(preg_match_all(
"/(\\\$v\\d+)/ims", $this->
getQuestion(), $matches))
212 foreach($matches[1] as $variable)
215 if(is_array($userdata))
217 if(strlen($userdata[$varObj->getVariable()]))
219 $value = $userdata[$varObj->getVariable()];
220 $varObj->setValue($value);
222 elseif( is_object($previewSession) )
224 $userSolution = $previewSession->getParticipantsSolution();
225 $userSolution[$varObj->getVariable()] = $varObj->getValue();
226 $previewSession->setParticipantsSolution($userSolution);
231 $this->saveCurrentSolution($userdata[
"active_id"], $userdata[
"pass"], $variable,$varObj->getValue());
234 $unit = (is_object($varObj->getUnit())) ? $varObj->getUnit()->getUnit() :
"";
235 $val = (strlen($varObj->getValue()) > 8) ? strtoupper(sprintf(
"%e", $varObj->getValue())) : $varObj->getValue();
236 $text = preg_replace(
"/\\$" . substr($variable, 1) .
"(?![0-9]+)/", $val .
" " . $unit .
"\\1", $text);
239 if(preg_match_all(
"/(\\\$r\\d+)/ims", $this->
getQuestion(), $rmatches))
241 foreach($rmatches[1] as
$result)
246 $user_data[
$result][
'result_type'] = $resObj->getResultType();
255 if(is_array($userdata))
257 if(is_array($userdata[$result]))
259 if($forsolution && $result_output)
262 $value = sprintf(
"%." . $resObj->getPrecision() .
"f", $value_org);
268 $frac_helper = $value[1];
277 $value = $userdata[
$result][
"value"];
281 $value =
' value="' . $userdata[
$result][
"value"] .
'"';
291 $value = sprintf(
"%." . $resObj->getPrecision() .
"f", $value);
298 $frac_helper = $value[1];
301 $value =
' value="' . $value .
'"';
308 $use_precision = !($userdata == null && $graphicalOutput == FALSE && $forsolution == FALSE && $result_output == FALSE);
310 $val = $resObj->calculateFormula($this->
getVariables(), $this->
getResults(), parent::getId(), $use_precision);
315 $val = $resObj->convertDecimalToCoprimeFraction($val);
318 $frac_helper = $val[1];
324 $val = sprintf(
"%." . $resObj->getPrecision() .
"f", $val);
325 $val = (strlen($val) > 8) ? strtoupper(sprintf(
"%e", $val)) : $val;
327 $value =
' value="' . $val .
'"';
337 $input =
'<input type="text" spellcheck="false" autocomplete="off" autocorrect="off" autocapitalize="off" name="result_' . $result .
'"' . $value .
' />';
345 if(is_array($userdata))
349 if($userdata[$result][
"unit"] == $unit->getId())
351 $units = $unit->getUnit();
357 if($resObj->getUnit())
359 $units = $resObj->getUnit()->getUnit();
365 $units =
'<select name="result_' . $result .
'_unit">';
366 $units .=
'<option value="-1">' . $this->lng->txt(
"select_unit") .
'</option>';
369 $units .=
'<option value="' . $unit->getId() .
'"';
370 if((is_array($userdata[$result])) && (strlen($userdata[$result][
"unit"])))
372 if($userdata[$result][
"unit"] == $unit->getId())
374 $units .=
' selected="selected"';
377 $units .=
'>' . $unit->getUnit() .
'</option>';
379 $units .=
'</select>';
386 switch($resObj->getResultType())
389 $units .=
' ' . $this->lng->txt(
'expected_result_type') .
': ' . $this->lng->txt(
'result_dec');
392 if(strlen($frac_helper))
394 $units .=
' ≈ ' . $frac_helper .
', ';
396 elseif (is_array($userdata) && isset($userdata[$result]) && strlen($userdata[$result][
"frac_helper"]))
398 if(!preg_match(
'-/-', $value))
400 $units .=
' ≈ ' . $userdata[
$result][
"frac_helper"] .
', ';
403 $units .=
' ' . $this->lng->txt(
'expected_result_type') .
': ' . $this->lng->txt(
'result_frac');
406 if(strlen($frac_helper))
408 $units .=
' ≈ ' . $frac_helper .
', ';
410 elseif (is_array($userdata) && isset($userdata[$result]) && strlen($userdata[$result][
"frac_helper"]))
412 if(!preg_match(
'-/-', $value))
414 $units .=
' ≈ ' . $userdata[
$result][
"frac_helper"] .
', ';
417 $units .=
' ' . $this->lng->txt(
'expected_result_type') .
': ' . $this->lng->txt(
'result_co_frac');
427 if(is_array($userdata) && is_array($userdata[$result]))
429 if($userdata[$result][
"unit"] > 0)
434 if(isset($userdata[$result][
"value"]))
436 $user_value = $userdata[
$result][
"value"];
440 $template =
new ilTemplate(
"tpl.il_as_qpl_formulaquestion_output_solution_image.html",
true,
true,
'Modules/TestQuestionPool');
442 if($resObj->isCorrect($this->getVariables(), $this->
getResults(), $user_value, $resunit))
444 $template->setCurrentBlock(
"icon_ok");
446 $template->setVariable(
"TEXT_OK", $this->lng->txt(
"answer_is_right"));
447 $template->parseCurrentBlock();
451 $template->setCurrentBlock(
"icon_not_ok");
453 $template->setVariable(
"TEXT_NOT_OK", $this->lng->txt(
"answer_is_wrong"));
454 $template->parseCurrentBlock();
456 $checkSign = $template->get();
461 $template =
new ilTemplate(
"tpl.il_as_qpl_formulaquestion_output_solution_result.html",
true,
true,
'Modules/TestQuestionPool');
463 if(is_array($userdata))
465 $found = $resObj->getResultInfo($this->
getVariables(), $this->
getResults(), $userdata[$resObj->getResult()][
"value"], $userdata[$resObj->getResult()][
"unit"], $this->
getUnitrepository()->getUnits());
469 $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());
472 if($resObj->getRatingSimple())
480 $resulttext .= $found[
'points'] .
" " . (($found[
'points'] == 1) ? $this->lng->txt(
'point') : $this->lng->txt(
'points'));
485 $resulttext .= $this->lng->txt(
"rated_sign") .
" " . (($found[
'sign']) ? $found[
'sign'] : 0) .
" " . (($found[
'sign'] == 1) ? $this->lng->txt(
'point') : $this->lng->txt(
'points')) .
", ";
486 $resulttext .= $this->lng->txt(
"rated_value") .
" " . (($found[
'value']) ? $found[
'value'] : 0) .
" " . (($found[
'value'] == 1) ? $this->lng->txt(
'point') : $this->lng->txt(
'points')) .
", ";
487 $resulttext .= $this->lng->txt(
"rated_unit") .
" " . (($found[
'unit']) ? $found[
'unit'] : 0) .
" " . (($found[
'unit'] == 1) ? $this->lng->txt(
'point') : $this->lng->txt(
'points'));
491 $template->setVariable(
"RESULT_OUTPUT", $resulttext);
493 $resultOutput = $template->get();
495 $text = preg_replace(
"/\\\$" . substr($result, 1) .
"(?![0-9]+)/", $input .
" " . $units .
" " . $checkSign .
" " . $resultOutput .
" " .
"\\1", $text);
510 $resultunit =
$result->getUnit();
512 foreach($result_units as $unit)
514 if(is_object($resultunit))
516 if($resultunit->getId() != $unit->getId())
518 if($resultunit->getBaseUnit() && $unit->getBaseUnit())
520 if($resultunit->getBaseUnit() == $unit->getBaseUnit())
return false;
522 if($resultunit->getBaseUnit())
524 if($resultunit->getBaseUnit() == $unit->getId())
return false;
526 if($unit->getBaseUnit())
528 if($unit->getBaseUnit() == $resultunit->getId())
return false;
542 if(($this->title) and ($this->author) and ($this->question) and ($this->
getMaximumPoints() > 0))
562 $affectedRows = $ilDB->manipulateF(
" 563 DELETE FROM il_qpl_qst_fq_var 564 WHERE question_fi = %s",
566 array($this->
getId())
570 $target_qst_id = $this->
getId();
572 foreach($this->variables as $variable)
574 $next_id = $ilDB->nextId(
'il_qpl_qst_fq_var');
575 $ilDB->insert(
'il_qpl_qst_fq_var',
577 'variable_id' => array(
'integer', $next_id),
578 'question_fi' => array(
'integer', $this->
getId()),
579 'variable' => array(
'text', $variable->getVariable()),
580 'range_min' => array(
'float', ((strlen($variable->getRangeMin())) ? $variable->getRangeMin() : 0.0)),
581 'range_max' => array(
'float', ((strlen($variable->getRangeMax())) ? $variable->getRangeMax() : 0.0)),
582 'unit_fi' => array(
'integer', (is_object($variable->getUnit()) ? (
int)$variable->getUnit()->getId() : 0)),
583 'varprecision' => array(
'integer', (
int)$variable->getPrecision()),
584 'intprecision' => array(
'integer', (
int)$variable->getIntprecision()),
585 'range_min_txt' => array(
'text', $variable->getRangeMinTxt()),
586 'range_max_txt' => array(
'text', $variable->getRangeMaxTxt())
591 $affectedRows = $ilDB->manipulateF(
"DELETE FROM il_qpl_qst_fq_res WHERE question_fi = %s",
593 array($this->
getId())
596 foreach($this->results as
$result)
598 $next_id = $ilDB->nextId(
'il_qpl_qst_fq_res');
599 if( is_object($result->getUnit()))
601 $tmp_result_unit = $result->getUnit()->getId();
605 $tmp_result_unit = NULL;
608 $formula = str_replace(
",",
".", $result->getFormula());
610 $ilDB->insert(
"il_qpl_qst_fq_res", array(
611 "result_id" => array(
"integer", $next_id),
612 "question_fi" => array(
"integer", $this->
getId()),
613 "result" => array(
"text", $result->getResult()),
614 "range_min" => array(
"float", ((strlen($result->getRangeMin())) ? $result->getRangeMin() : 0)),
615 "range_max" => array(
"float", ((strlen($result->getRangeMax())) ? $result->getRangeMax() : 0)),
616 "tolerance" => array(
"float", ((strlen($result->getTolerance())) ? $result->getTolerance() : 0)),
617 "unit_fi" => array(
"integer", (
int)$tmp_result_unit),
618 "formula" => array(
"clob", $formula),
619 "resprecision" => array(
"integer", $result->getPrecision()),
620 "rating_simple" => array(
"integer", ($result->getRatingSimple()) ? 1 : 0),
621 "rating_sign" => array(
"float", ($result->getRatingSimple()) ? 0 : $result->getRatingSign()),
622 "rating_value" => array(
"float", ($result->getRatingSimple()) ? 0 : $result->getRatingValue()),
623 "rating_unit" => array(
"float", ($result->getRatingSimple()) ? 0 : $result->getRatingUnit()),
624 "points" => array(
"float", $result->getPoints()),
625 "result_type" => array(
'integer', (
int)$result->getResultType()),
626 "range_min_txt" => array(
"text", $result->getRangeMinTxt()),
627 "range_max_txt" => array(
"text", $result->getRangeMaxTxt())
632 $affectedRows = $ilDB->manipulateF(
"DELETE FROM il_qpl_qst_fq_res_unit WHERE question_fi = %s",
634 array($this->
getId())
636 foreach($this->results as $result)
640 $next_id = $ilDB->nextId(
'il_qpl_qst_fq_res_unit');
641 $affectedRows = $ilDB->manipulateF(
"INSERT INTO il_qpl_qst_fq_res_unit (result_unit_id, question_fi, result, unit_fi) VALUES (%s, %s, %s, %s)",
642 array(
'integer',
'integer',
'text',
'integer'),
646 $result->getResult(),
659 if($source_qst_id != $target_qst_id && $source_qst_id > 0)
661 $res = $ilDB->queryF(
' 662 SELECT * FROM il_qpl_qst_fq_ucat WHERE question_fi = %s',
663 array(
'integer'), array($source_qst_id));
666 while(
$row = $ilDB->fetchAssoc(
$res))
668 $cp_cats[] =
$row[
'category_id'];
671 foreach($cp_cats as $old_category_id)
674 $new_cat_id = $this->unitrepository->copyCategory($old_category_id, $target_qst_id);
677 $this->unitrepository->copyUnitsByCategories($old_category_id, $new_cat_id, $target_qst_id);
691 $result = $ilDB->queryF(
"SELECT qpl_questions.* FROM qpl_questions WHERE question_id = %s",
698 $this->
setId($question_id);
717 include_once(
"./Services/RTE/classes/class.ilRTE.php");
722 $result = $ilDB->queryF(
"SELECT * FROM il_qpl_qst_fq_var WHERE question_fi = %s",
731 $varObj->setRangeMinTxt(
$data[
'range_min_txt']);
732 $varObj->setRangeMaxTxt(
$data[
'range_max_txt']);
737 $result = $ilDB->queryF(
"SELECT * FROM il_qpl_qst_fq_res WHERE question_fi = %s",
745 $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"]);
746 $resObj->setResultType(
$data[
'result_type']);
747 $resObj->setRangeMinTxt(
$data[
'range_min_txt']);
748 $resObj->setRangeMaxTxt(
$data[
'range_max_txt']);
754 $result = $ilDB->queryF(
"SELECT * FROM il_qpl_qst_fq_res_unit WHERE question_fi = %s",
768 parent::loadFromDb($question_id);
783 $this_id = $this->
getId();
787 include_once (
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
791 if( (
int)$testObjId > 0 )
793 $clone->setObjId($testObjId);
820 $clone->copyPageOfQuestion($this_id);
822 $clone->copyXHTMLMediaObjectsOfQuestion($this_id);
823 $clone->onDuplicate($thisObjId, $this_id, $clone->getObjId(), $clone->getId());
841 include_once (
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
844 $source_questionpool_id = $this->
getObjId();
845 $clone->setObjId($target_questionpool_id);
856 $clone->onCopy($source_questionpool_id,
$original_id, $clone->getObjId(), $clone->getId());
869 include_once (
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
872 $sourceParentId = $this->
getObjId();
878 $clone->setObjId($targetParentId);
880 if ($targetQuestionTitle)
882 $clone->setTitle($targetQuestionTitle);
887 $clone->copyPageOfQuestion($sourceQuestionId);
889 $clone->copyXHTMLMediaObjectsOfQuestion($sourceQuestionId);
891 $clone->onCopy($sourceParentId, $sourceQuestionId, $clone->getObjId(), $clone->getId());
903 foreach($this->results as
$result)
905 $points += $result->getPoints();
925 $user_solution = array();
926 foreach($solutions as $idx => $solution_value)
928 if(preg_match(
"/^(\\\$v\\d+)$/", $solution_value[
"value1"], $matches))
930 $user_solution[$matches[1]] = $solution_value[
"value2"];
931 $varObj = $this->
getVariable($solution_value[
"value1"]);
932 $varObj->setValue($solution_value[
"value2"]);
934 else if(preg_match(
"/^(\\\$r\\d+)$/", $solution_value[
"value1"], $matches))
936 if(!array_key_exists($matches[1], $user_solution)) $user_solution[$matches[1]] = array();
937 $user_solution[$matches[1]][
"value"] = $solution_value[
"value2"];
939 else if(preg_match(
"/^(\\\$r\\d+)_unit$/", $solution_value[
"value1"], $matches))
941 if(!array_key_exists($matches[1], $user_solution)) $user_solution[$matches[1]] = array();
942 $user_solution[$matches[1]][
"unit"] = $solution_value[
"value2"];
950 $points += $result->getReachedPoints($this->
getVariables(), $this->
getResults(), $user_solution[$result->getResult()][
"value"], $user_solution[$result->getResult()][
"unit"], $this->unitrepository->getUnits());
963 $v = isset($user_solution[$result->getResult()]) ? $user_solution[$result->getResult()] : null;
964 $u = isset($user_solution[$result->getResult().
'_unit']) ? $user_solution[$result->getResult().
'_unit'] : null;
966 $points += $result->getReachedPoints(
971 $this->unitrepository->getUnits());
990 include_once
"./Modules/Test/classes/class.ilObjTest.php";
998 $entered_values = FALSE;
999 foreach($solutionSubmit as $key => $value)
1002 if(preg_match(
"/^result_(\\\$r\\d+)$/", $key, $matches))
1004 if(strlen($value)) $entered_values = TRUE;
1005 $result = $ilDB->queryF(
"SELECT solution_id FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s AND " . $ilDB->like(
'value1',
'clob', $matches[1]),
1006 array(
'integer',
'integer',
'integer'),
1013 $affectedRows = $ilDB->manipulateF(
"DELETE FROM tst_solutions WHERE solution_id = %s",
1015 array(
$row[
'solution_id'])
1020 $affectedRows = $this->saveCurrentSolution($active_id,
$pass,$matches[1],str_replace(
",",
".", $value));
1022 else if(preg_match(
"/^result_(\\\$r\\d+)_unit$/", $key, $matches))
1024 $result = $ilDB->queryF(
"SELECT solution_id FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s AND " . $ilDB->like(
'value1',
'clob', $matches[1] .
"_unit"),
1025 array(
'integer',
'integer',
'integer'),
1032 $affectedRows = $ilDB->manipulateF(
"DELETE FROM tst_solutions WHERE solution_id = %s",
1034 array(
$row[
'solution_id'])
1039 $affectedRows = $this->saveCurrentSolution($active_id,
$pass,$matches[1] .
"_unit",$value);
1047 include_once (
"./Modules/Test/classes/class.ilObjAssessmentFolder.php");
1055 include_once (
"./Modules/Test/classes/class.ilObjAssessmentFolder.php");
1073 if(preg_match(
"/^result_(\\\$r\\d+)$/", $key, $matches))
1075 $userSolution[$matches[1]] = $val;
1077 else if(preg_match(
"/^result_(\\\$r\\d+)_unit$/", $key, $matches))
1079 $userSolution[$matches[1] .
"_unit"] = $val;
1106 return "assFormulaQuestion";
1136 $affectedRows = $ilDB->manipulateF(
"DELETE FROM il_qpl_qst_fq_var WHERE question_fi = %s",
1141 $affectedRows = $ilDB->manipulateF(
"DELETE FROM il_qpl_qst_fq_res WHERE question_fi = %s",
1146 $affectedRows = $ilDB->manipulateF(
"DELETE FROM il_qpl_qst_fq_res_unit WHERE question_fi = %s",
1158 $text = parent::getRTETextWithMediaObjects();
1175 require_once
'Services/Excel/classes/class.ilExcelUtils.php';
1180 foreach($solution as $solutionvalue)
1183 if(strpos($solutionvalue[
"value1"],
"_unit"))
1186 if(is_object($unit))
1188 $worksheet->write($startrow + $i, 1, $unit->getUnit());
1193 $worksheet->write($startrow + $i, 1, $solutionvalue[
"value2"]);
1195 if(preg_match(
"/(\\\$v\\d+)/", $solutionvalue[
"value1"], $matches))
1197 $var = $this->
getVariable($solutionvalue[
"value1"]);
1198 if(is_object($var) && (is_object($var->getUnit())))
1200 $worksheet->write($startrow + $i, 2, $var->getUnit()->getUnit());
1205 return $startrow + $i + 1;
1215 $user_solution = array();
1217 foreach($solutions as $idx => $solution_value)
1219 if(preg_match(
"/^(\\\$v\\d+)$/", $solution_value[
"value1"], $matches))
1221 $user_solution[$matches[1]] = $solution_value[
"value2"];
1223 $varObj->setValue($solution_value[
"value2"]);
1225 else if(preg_match(
"/^(\\\$r\\d+)$/", $solution_value[
"value1"], $matches))
1227 if(!array_key_exists($matches[1], $user_solution)) $user_solution[$matches[1]] = array();
1228 $user_solution[$matches[1]][
"value"] = $solution_value[
"value2"];
1230 else if(preg_match(
"/^(\\\$r\\d+)_unit$/", $solution_value[
"value1"], $matches))
1232 if(!array_key_exists($matches[1], $user_solution)) $user_solution[$matches[1]] = array();
1233 $user_solution[$matches[1]][
"unit"] = $solution_value[
"value2"];
1240 if(is_object($result->getUnit()))
1242 $user_solution[$result->getResult()][
"unit"] = $result->getUnit()->getId();
1243 $user_solution[$result->getResult()][
"value"] = $resVal;
1245 else if($result->getUnit() == NULL)
1250 $available_units = $result->getAvailableResultUnits(parent::getId());
1251 $result_name = $result->getResult();
1253 if($available_units[$result_name] != NULL)
1255 $check_unit = in_array($user_solution[$result_name][
'unit'], $available_units[$result_name]);
1258 if($check_unit ==
true)
1262 $user_solution[$result->getResult()][
"value"] = round(
ilMath::_div($resVal, $unit_factor), 55);
1269 if(is_array($value))
1271 $user_solution[$result->getResult()][
"value"] = $value[0];
1272 $user_solution[$result->getResult()][
"frac_helper"] = $value[1];
1276 $user_solution[$result->getResult()][
"value"] = $value;
1277 $user_solution[$result->getResult()][
"frac_helper"] = null;
1280 elseif($result->getPrecision() > 0)
1282 $user_solution[$result->getResult()][
"value"] = round($resVal, $result->getPrecision());
1286 $user_solution[$result->getResult()][
"value"] = round($resVal);
1289 return $user_solution;
1295 $this->unitrepository->setConsumerId($this->
getId());
1309 return parent::__get($value);
1335 $solutionSubmit = array();
1336 foreach(
$_POST as $k => $v)
1338 if(preg_match(
"/^result_(\\\$r\\d+)$/", $k))
1340 $solutionSubmit[$k] = $v;
1341 } elseif(preg_match(
"/^result_(\\\$r\\d+)_unit$/", $k))
1343 $solutionSubmit[$k] = $v;
1346 return $solutionSubmit;
1359 require_once
"./Modules/TestQuestionPool/classes/class.ilOperatorsExpressionMapping.php";
1390 $data = $ilDB->queryF(
1391 "SELECT value1, value2 FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s AND step = ( 1392 SELECT MAX(step) FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s 1394 array(
"integer",
"integer",
"integer",
"integer",
"integer",
"integer"),
1400 if(strstr(
$row[
"value1"],
'$r') &&
$row[
"value2"] != null)
1402 $result->addKeyValue(str_replace(
'$r',
"",
$row[
"value1"]),
$row[
"value2"]);
1426 return $this->
getResult(
'$r'.($index+1));
getId()
Gets the id of the assQuestion object.
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
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.
& getSolutionValues($active_id, $pass=NULL)
Loads solutions of a given user from the database an returns it.
Abstract basic class which is to be extended by the concrete assessment question type classes...
_getPass($active_id)
Retrieves the actual pass of a given user for a given test.
_convert_text($a_text, $a_target="has been removed")
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.
_enabledAssessmentLogging()
check wether assessment logging is enabled or not
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)
setAuthor($author="")
Sets the authors name of the assQuestion object.
Class ilUserQuestionResult.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
const NumericResultExpression
special template class to simplify handling of ITX/PEAR
getQuestion()
Gets the question string of the question object.
_getLogLanguage()
retrieve the log language for assessment logging
static getOperatorsByExpression($expression)
saveQuestionDataToDb($original_id="")
setQuestion($question="")
Sets the question string of the question object.
setOriginalId($original_id)
logAction($logtext="", $active_id="", $question_id="")
Logs an action into the Test&Assessment log.
getTitle()
Gets the title string of the assQuestion object.
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.
setOwner($owner="")
Sets the creator/owner ID of the assQuestion object.
const EmptyAnswerExpression