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";
48 $this->variables = array();
49 $this->results = array();
50 $this->resultunits = array();
57 $this->variables = array();
67 if(array_key_exists($variable, $this->variables))
69 return $this->variables[$variable];
76 $this->variables[$variable->getVariable()] = $variable;
81 $this->results = array();
91 if(array_key_exists(
$result, $this->results))
105 $this->resultunits[
$result->getResult()] = array();
106 if((!is_object(
$result)) || (!is_array($unit_ids)))
return;
107 foreach($unit_ids as
$id)
115 if(is_object(
$result) && is_object($unit))
117 if(!is_array($this->resultunits[
$result->getResult()]))
119 $this->resultunits[
$result->getResult()] = array();
121 $this->resultunits[
$result->getResult()][$unit->getId()] = $unit;
130 return $this->resultunits[
$result->getResult()];
142 if(array_key_exists($unit_id, $this->resultunits[
$result->getResult()]))
155 if(preg_match_all(
"/(\\\$v\\d+)/ims", $this->
getQuestion(), $matches))
157 foreach($matches[1] as $variable)
164 if(preg_match_all(
"/(\\\$r\\d+)/ims", $this->
getQuestion(), $rmatches))
166 foreach($rmatches[1] as
$result)
176 if(preg_match_all(
"/(\\\$v\\d+)/ims", $this->
getQuestion(), $matches))
178 if((count(array_unique($matches[1]))) != count($matches[1]))
return false;
185 if(preg_match_all(
"/(\\\$r\\d+)/ims", $this->
getQuestion(), $rmatches))
187 if((count(array_unique($rmatches[1]))) != count($rmatches[1]))
return false;
192 public function substituteVariables($userdata = null, $graphicalOutput = FALSE, $forsolution = FALSE, $result_output = FALSE)
196 if((count($this->results) == 0) && (count($this->variables) == 0))
200 if(preg_match_all(
"/(\\\$r\\d+)/ims", $this->
getQuestion(), $rmatches))
202 foreach($rmatches[1] as
$result)
208 if(preg_match_all(
"/(\\\$v\\d+)/ims", $this->
getQuestion(), $matches))
210 foreach($matches[1] as $variable)
213 if(is_array($userdata))
215 if(strlen($userdata[$varObj->getVariable()]))
217 $value = $userdata[$varObj->getVariable()];
218 $varObj->setValue($value);
223 $next_id = $ilDB->nextId(
'tst_solutions');
224 $affectedRows = $ilDB->insert(
"tst_solutions", array(
225 "solution_id" => array(
"integer", $next_id),
226 "active_fi" => array(
"integer", $userdata[
"active_id"]),
227 "question_fi" => array(
"integer", $this->
getId()),
228 "value1" => array(
"clob", $variable),
229 "value2" => array(
"clob", $varObj->getValue()),
230 "points" => array(
"float", 0),
231 "pass" => array(
"integer", $userdata[
"pass"]),
232 "tstamp" => array(
"integer", time())
236 $unit = (is_object($varObj->getUnit())) ? $varObj->getUnit()->getUnit() :
"";
237 $val = (strlen($varObj->getValue()) > 8) ? strtoupper(sprintf(
"%e", $varObj->getValue())) : $varObj->getValue();
238 $text = preg_replace(
"/\\$" . substr($variable, 1) .
"(?![0-9]+)/", $val .
" " . $unit .
"\\1", $text);
241 if(preg_match_all(
"/(\\\$r\\d+)/ims", $this->
getQuestion(), $rmatches))
243 foreach($rmatches[1] as
$result)
248 $user_data[
$result][
'result_type'] = $resObj->getResultType();
257 if(is_array($userdata))
259 if(is_array($userdata[$result]))
261 if($forsolution && $result_output)
264 $value = sprintf(
"%." . $resObj->getPrecision() .
"f", $value_org);
270 $frac_helper = $value[1];
279 $value = $userdata[
$result][
"value"];
283 $value =
' value="' . $userdata[
$result][
"value"] .
'"';
293 $value = sprintf(
"%." . $resObj->getPrecision() .
"f", $value);
300 $frac_helper = $value[1];
303 $value =
' value="' . $value .
'"';
310 $use_precision = !($userdata == null && $graphicalOutput == FALSE && $forsolution == FALSE && $result_output == FALSE);
312 $val = $resObj->calculateFormula($this->
getVariables(), $this->
getResults(), parent::getId(), $use_precision);
317 $val = $resObj->convertDecimalToCoprimeFraction($val);
320 $frac_helper = $val[1];
326 $val = sprintf(
"%." . $resObj->getPrecision() .
"f", $val);
327 $val = (strlen($val) > 8) ? strtoupper(sprintf(
"%e", $val)) : $val;
329 $value =
' value="' . $val .
'"';
339 $input =
'<input type="text" name="result_' . $result .
'"' . $value .
' />';
347 if(is_array($userdata))
351 if($userdata[$result][
"unit"] == $unit->getId())
353 $units = $unit->getUnit();
359 if($resObj->getUnit())
361 $units = $resObj->getUnit()->getUnit();
367 $units =
'<select name="result_' . $result .
'_unit">';
368 $units .=
'<option value="-1">' . $this->lng->txt(
"select_unit") .
'</option>';
371 $units .=
'<option value="' . $unit->getId() .
'"';
372 if((is_array($userdata[$result])) && (strlen($userdata[$result][
"unit"])))
374 if($userdata[$result][
"unit"] == $unit->getId())
376 $units .=
' selected="selected"';
379 $units .=
'>' . $unit->getUnit() .
'</option>';
381 $units .=
'</select>';
388 switch($resObj->getResultType())
391 $units .=
' ' . $this->lng->txt(
'expected_result_type') .
': ' . $this->lng->txt(
'result_dec');
394 if(strlen($frac_helper))
396 $units .=
' ≈ ' . $frac_helper .
', ';
398 elseif (is_array($userdata) && isset($userdata[$result]) && strlen($userdata[$result][
"frac_helper"]))
400 if(!preg_match(
'-/-', $value))
402 $units .=
' ≈ ' . $userdata[
$result][
"frac_helper"] .
', ';
405 $units .=
' ' . $this->lng->txt(
'expected_result_type') .
': ' . $this->lng->txt(
'result_frac');
408 if(strlen($frac_helper))
410 $units .=
' ≈ ' . $frac_helper .
', ';
412 elseif (is_array($userdata) && isset($userdata[$result]) && strlen($userdata[$result][
"frac_helper"]))
414 if(!preg_match(
'-/-', $value))
416 $units .=
' ≈ ' . $userdata[
$result][
"frac_helper"] .
', ';
419 $units .=
' ' . $this->lng->txt(
'expected_result_type') .
': ' . $this->lng->txt(
'result_co_frac');
429 if(is_array($userdata) && is_array($userdata[$result]))
431 if($userdata[$result][
"unit"] > 0)
436 if(isset($userdata[$result][
"value"]))
438 $user_value = $userdata[
$result][
"value"];
442 $template =
new ilTemplate(
"tpl.il_as_qpl_formulaquestion_output_solution_image.html",
true,
true,
'Modules/TestQuestionPool');
444 if($resObj->isCorrect($this->getVariables(), $this->
getResults(), $user_value, $resunit))
446 $template->setCurrentBlock(
"icon_ok");
448 $template->setVariable(
"TEXT_OK", $this->lng->txt(
"answer_is_right"));
449 $template->parseCurrentBlock();
453 $template->setCurrentBlock(
"icon_not_ok");
455 $template->setVariable(
"TEXT_NOT_OK", $this->lng->txt(
"answer_is_wrong"));
456 $template->parseCurrentBlock();
458 $checkSign = $template->get();
463 $template =
new ilTemplate(
"tpl.il_as_qpl_formulaquestion_output_solution_result.html",
true,
true,
'Modules/TestQuestionPool');
465 if(is_array($userdata))
467 $found = $resObj->getResultInfo($this->
getVariables(), $this->
getResults(), $userdata[$resObj->getResult()][
"value"], $userdata[$resObj->getResult()][
"unit"], $this->
getUnitrepository()->getUnits());
471 $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());
474 if($resObj->getRatingSimple())
482 $resulttext .= $found[
'points'] .
" " . (($found[
'points'] == 1) ? $this->lng->txt(
'point') : $this->lng->txt(
'points'));
487 $resulttext .= $this->lng->txt(
"rated_sign") .
" " . (($found[
'sign']) ? $found[
'sign'] : 0) .
" " . (($found[
'sign'] == 1) ? $this->lng->txt(
'point') : $this->lng->txt(
'points')) .
", ";
488 $resulttext .= $this->lng->txt(
"rated_value") .
" " . (($found[
'value']) ? $found[
'value'] : 0) .
" " . (($found[
'value'] == 1) ? $this->lng->txt(
'point') : $this->lng->txt(
'points')) .
", ";
489 $resulttext .= $this->lng->txt(
"rated_unit") .
" " . (($found[
'unit']) ? $found[
'unit'] : 0) .
" " . (($found[
'unit'] == 1) ? $this->lng->txt(
'point') : $this->lng->txt(
'points'));
493 $template->setVariable(
"RESULT_OUTPUT", $resulttext);
495 $resultOutput = $template->get();
497 $text = preg_replace(
"/\\\$" . substr($result, 1) .
"(?![0-9]+)/", $input .
" " . $units .
" " . $checkSign .
" " . $resultOutput .
" " .
"\\1", $text);
512 $resultunit =
$result->getUnit();
514 foreach($result_units as $unit)
516 if(is_object($resultunit))
518 if($resultunit->getId() != $unit->getId())
520 if($resultunit->getBaseUnit() && $unit->getBaseUnit())
522 if($resultunit->getBaseUnit() == $unit->getBaseUnit())
return false;
524 if($resultunit->getBaseUnit())
526 if($resultunit->getBaseUnit() == $unit->getId())
return false;
528 if($unit->getBaseUnit())
530 if($unit->getBaseUnit() == $resultunit->getId())
return false;
544 if(($this->title) and ($this->author) and ($this->question) and ($this->
getMaximumPoints() > 0))
564 $affectedRows = $ilDB->manipulateF(
" 565 DELETE FROM il_qpl_qst_fq_var 566 WHERE question_fi = %s",
568 array($this->
getId())
572 $target_qst_id = $this->
getId();
574 foreach($this->variables as $variable)
576 $next_id = $ilDB->nextId(
'il_qpl_qst_fq_var');
577 $ilDB->insert(
'il_qpl_qst_fq_var',
579 'variable_id' => array(
'integer', $next_id),
580 'question_fi' => array(
'integer', $this->
getId()),
581 'variable' => array(
'text', $variable->getVariable()),
582 'range_min' => array(
'float', ((strlen($variable->getRangeMin())) ? $variable->getRangeMin() : 0.0)),
583 'range_max' => array(
'float', ((strlen($variable->getRangeMax())) ? $variable->getRangeMax() : 0.0)),
584 'unit_fi' => array(
'integer', (is_object($variable->getUnit()) ? (
int)$variable->getUnit()->getId() : 0)),
585 'varprecision' => array(
'integer', (
int)$variable->getPrecision()),
586 'intprecision' => array(
'integer', (
int)$variable->getIntprecision()),
587 'range_min_txt' => array(
'text', $variable->getRangeMinTxt()),
588 'range_max_txt' => array(
'text', $variable->getRangeMaxTxt())
593 $affectedRows = $ilDB->manipulateF(
"DELETE FROM il_qpl_qst_fq_res WHERE question_fi = %s",
595 array($this->
getId())
598 foreach($this->results as
$result)
600 $next_id = $ilDB->nextId(
'il_qpl_qst_fq_res');
601 if( is_object($result->getUnit()))
603 $tmp_result_unit = $result->getUnit()->getId();
607 $tmp_result_unit = NULL;
610 $formula = str_replace(
",",
".", $result->getFormula());
612 $ilDB->insert(
"il_qpl_qst_fq_res", array(
613 "result_id" => array(
"integer", $next_id),
614 "question_fi" => array(
"integer", $this->
getId()),
615 "result" => array(
"text", $result->getResult()),
616 "range_min" => array(
"float", ((strlen($result->getRangeMin())) ? $result->getRangeMin() : 0)),
617 "range_max" => array(
"float", ((strlen($result->getRangeMax())) ? $result->getRangeMax() : 0)),
618 "tolerance" => array(
"float", ((strlen($result->getTolerance())) ? $result->getTolerance() : 0)),
619 "unit_fi" => array(
"integer", (
int)$tmp_result_unit),
620 "formula" => array(
"clob", $formula),
621 "resprecision" => array(
"integer", $result->getPrecision()),
622 "rating_simple" => array(
"integer", ($result->getRatingSimple()) ? 1 : 0),
623 "rating_sign" => array(
"float", ($result->getRatingSimple()) ? 0 : $result->getRatingSign()),
624 "rating_value" => array(
"float", ($result->getRatingSimple()) ? 0 : $result->getRatingValue()),
625 "rating_unit" => array(
"float", ($result->getRatingSimple()) ? 0 : $result->getRatingUnit()),
626 "points" => array(
"float", $result->getPoints()),
627 "result_type" => array(
'integer', (
int)$result->getResultType()),
628 "range_min_txt" => array(
"text", $result->getRangeMinTxt()),
629 "range_max_txt" => array(
"text", $result->getRangeMaxTxt())
634 $affectedRows = $ilDB->manipulateF(
"DELETE FROM il_qpl_qst_fq_res_unit WHERE question_fi = %s",
636 array($this->
getId())
638 foreach($this->results as $result)
642 $next_id = $ilDB->nextId(
'il_qpl_qst_fq_res_unit');
643 $affectedRows = $ilDB->manipulateF(
"INSERT INTO il_qpl_qst_fq_res_unit (result_unit_id, question_fi, result, unit_fi) VALUES (%s, %s, %s, %s)",
644 array(
'integer',
'integer',
'text',
'integer'),
648 $result->getResult(),
661 if($source_qst_id != $target_qst_id && $source_qst_id > 0)
663 $res = $ilDB->queryF(
' 664 SELECT * FROM il_qpl_qst_fq_ucat WHERE question_fi = %s',
665 array(
'integer'), array($source_qst_id));
668 while(
$row = $ilDB->fetchAssoc(
$res))
670 $cp_cats[] =
$row[
'category_id'];
673 foreach($cp_cats as $old_category_id)
676 $new_cat_id = $this->unitrepository->copyCategory($old_category_id, $target_qst_id);
679 $this->unitrepository->copyUnitsByCategories($old_category_id, $new_cat_id, $target_qst_id);
693 $result = $ilDB->queryF(
"SELECT qpl_questions.* FROM qpl_questions WHERE question_id = %s",
700 $this->
setId($question_id);
719 include_once(
"./Services/RTE/classes/class.ilRTE.php");
724 $result = $ilDB->queryF(
"SELECT * FROM il_qpl_qst_fq_var WHERE question_fi = %s",
733 $varObj->setRangeMinTxt(
$data[
'range_min_txt']);
734 $varObj->setRangeMaxTxt(
$data[
'range_max_txt']);
739 $result = $ilDB->queryF(
"SELECT * FROM il_qpl_qst_fq_res WHERE question_fi = %s",
747 $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"]);
748 $resObj->setResultType(
$data[
'result_type']);
749 $resObj->setRangeMinTxt(
$data[
'range_min_txt']);
750 $resObj->setRangeMaxTxt(
$data[
'range_max_txt']);
756 $result = $ilDB->queryF(
"SELECT * FROM il_qpl_qst_fq_res_unit WHERE question_fi = %s",
770 parent::loadFromDb($question_id);
785 $this_id = $this->
getId();
789 include_once (
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
793 if( (
int)$testObjId > 0 )
795 $clone->setObjId($testObjId);
822 $clone->copyPageOfQuestion($this_id);
824 $clone->copyXHTMLMediaObjectsOfQuestion($this_id);
825 $clone->onDuplicate($thisObjId, $this_id, $clone->getObjId(), $clone->getId());
843 include_once (
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
846 $source_questionpool_id = $this->
getObjId();
847 $clone->setObjId($target_questionpool_id);
858 $clone->onCopy($source_questionpool_id,
$original_id, $clone->getObjId(), $clone->getId());
871 include_once (
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
874 $sourceParentId = $this->
getObjId();
880 $clone->setObjId($targetParentId);
882 if ($targetQuestionTitle)
884 $clone->setTitle($targetQuestionTitle);
889 $clone->copyPageOfQuestion($sourceQuestionId);
891 $clone->copyXHTMLMediaObjectsOfQuestion($sourceQuestionId);
893 $clone->onCopy($sourceParentId, $sourceQuestionId, $clone->getObjId(), $clone->getId());
905 foreach($this->results as
$result)
907 $points += $result->getPoints();
927 $user_solution = array();
928 foreach($solutions as $idx => $solution_value)
930 if(preg_match(
"/^(\\\$v\\d+)$/", $solution_value[
"value1"], $matches))
932 $user_solution[$matches[1]] = $solution_value[
"value2"];
933 $varObj = $this->
getVariable($solution_value[
"value1"]);
934 $varObj->setValue($solution_value[
"value2"]);
936 else if(preg_match(
"/^(\\\$r\\d+)$/", $solution_value[
"value1"], $matches))
938 if(!array_key_exists($matches[1], $user_solution)) $user_solution[$matches[1]] = array();
939 $user_solution[$matches[1]][
"value"] = $solution_value[
"value2"];
941 else if(preg_match(
"/^(\\\$r\\d+)_unit$/", $solution_value[
"value1"], $matches))
943 if(!array_key_exists($matches[1], $user_solution)) $user_solution[$matches[1]] = array();
944 $user_solution[$matches[1]][
"unit"] = $solution_value[
"value2"];
950 if( isset($user_solution[$result->getResult()][
"value"]) )
952 $v = $user_solution[$result->getResult()][
"value"];
959 if( isset($user_solution[$result->getResult()][
"unit"]) )
961 $u = $user_solution[$result->getResult()][
"unit"];
987 include_once
"./Modules/Test/classes/class.ilObjTest.php";
993 $entered_values = FALSE;
994 foreach(
$_POST as $key => $value)
996 if(preg_match(
"/^result_(\\\$r\\d+)$/", $key, $matches))
998 if(strlen($value)) $entered_values = TRUE;
999 $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]),
1000 array(
'integer',
'integer',
'integer'),
1007 $affectedRows = $ilDB->manipulateF(
"DELETE FROM tst_solutions WHERE solution_id = %s",
1009 array(
$row[
'solution_id'])
1014 $next_id = $ilDB->nextId(
'tst_solutions');
1015 $affectedRows = $ilDB->insert(
"tst_solutions", array(
1016 "solution_id" => array(
"integer", $next_id),
1017 "active_fi" => array(
"integer", $active_id),
1018 "question_fi" => array(
"integer", $this->
getId()),
1019 "value1" => array(
"clob", $matches[1]),
1020 "value2" => array(
"clob", str_replace(
",",
".", $value)),
1021 "pass" => array(
"integer",
$pass),
1022 "tstamp" => array(
"integer", time())
1025 else if(preg_match(
"/^result_(\\\$r\\d+)_unit$/", $key, $matches))
1027 $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"),
1028 array(
'integer',
'integer',
'integer'),
1035 $affectedRows = $ilDB->manipulateF(
"DELETE FROM tst_solutions WHERE solution_id = %s",
1037 array(
$row[
'solution_id'])
1042 $next_id = $ilDB->nextId(
'tst_solutions');
1043 $affectedRows = $ilDB->insert(
"tst_solutions", array(
1044 "solution_id" => array(
"integer", $next_id),
1045 "active_fi" => array(
"integer", $active_id),
1046 "question_fi" => array(
"integer", $this->
getId()),
1047 "value1" => array(
"clob", $matches[1] .
"_unit"),
1048 "value2" => array(
"clob", $value),
1049 "pass" => array(
"integer",
$pass),
1050 "tstamp" => array(
"integer", time())
1059 include_once (
"./Modules/Test/classes/class.ilObjAssessmentFolder.php");
1067 include_once (
"./Modules/Test/classes/class.ilObjAssessmentFolder.php");
1097 return "assFormulaQuestion";
1127 $affectedRows = $ilDB->manipulateF(
"DELETE FROM il_qpl_qst_fq_var WHERE question_fi = %s",
1132 $affectedRows = $ilDB->manipulateF(
"DELETE FROM il_qpl_qst_fq_res WHERE question_fi = %s",
1137 $affectedRows = $ilDB->manipulateF(
"DELETE FROM il_qpl_qst_fq_res_unit WHERE question_fi = %s",
1149 $text = parent::getRTETextWithMediaObjects();
1166 require_once
'Services/Excel/classes/class.ilExcelUtils.php';
1171 foreach($solution as $solutionvalue)
1174 if(strpos($solutionvalue[
"value1"],
"_unit"))
1177 if(is_object($unit))
1179 $worksheet->write($startrow + $i, 1, $unit->getUnit());
1184 $worksheet->write($startrow + $i, 1, $solutionvalue[
"value2"]);
1186 if(preg_match(
"/(\\\$v\\d+)/", $solutionvalue[
"value1"], $matches))
1188 $var = $this->
getVariable($solutionvalue[
"value1"]);
1189 if(is_object($var) && (is_object($var->getUnit())))
1191 $worksheet->write($startrow + $i, 2, $var->getUnit()->getUnit());
1196 return $startrow + $i + 1;
1206 $user_solution = array();
1207 $user_solution[
"active_id"] = $active_id;
1208 $user_solution[
"pass"] =
$pass;
1211 foreach($solutions as $idx => $solution_value)
1213 if(preg_match(
"/^(\\\$v\\d+)$/", $solution_value[
"value1"], $matches))
1215 $user_solution[$matches[1]] = $solution_value[
"value2"];
1217 $varObj->setValue($solution_value[
"value2"]);
1219 else if(preg_match(
"/^(\\\$r\\d+)$/", $solution_value[
"value1"], $matches))
1221 if(!array_key_exists($matches[1], $user_solution)) $user_solution[$matches[1]] = array();
1222 $user_solution[$matches[1]][
"value"] = $solution_value[
"value2"];
1224 else if(preg_match(
"/^(\\\$r\\d+)_unit$/", $solution_value[
"value1"], $matches))
1226 if(!array_key_exists($matches[1], $user_solution)) $user_solution[$matches[1]] = array();
1227 $user_solution[$matches[1]][
"unit"] = $solution_value[
"value2"];
1234 if(is_object($result->getUnit()))
1236 $user_solution[$result->getResult()][
"unit"] = $result->getUnit()->getId();
1237 $user_solution[$result->getResult()][
"value"] = $resVal;
1239 else if($result->getUnit() == NULL)
1244 $available_units = $result->getAvailableResultUnits(parent::getId());
1245 $result_name = $result->getResult();
1247 if($available_units[$result_name] != NULL)
1249 $check_unit = in_array($user_solution[$result_name][
'unit'], $available_units[$result_name]);
1252 if($check_unit ==
true)
1256 $user_solution[$result->getResult()][
"value"] = round(
ilMath::_div($resVal, $unit_factor), 55);
1263 if(is_array($value))
1265 $user_solution[$result->getResult()][
"value"] = $value[0];
1266 $user_solution[$result->getResult()][
"frac_helper"] = $value[1];
1270 $user_solution[$result->getResult()][
"value"] = $value;
1271 $user_solution[$result->getResult()][
"frac_helper"] = null;
1276 if($result->getPrecision() > 0)
1278 $user_solution[$result->getResult()][
"value"] = round($resVal, $result->getPrecision());
1282 return $user_solution;
1288 $this->unitrepository->setConsumerId($this->
getId());
1302 return parent::__get($value);
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.
setSuggestedSolution($solution_id="", $subquestion_index=0, $is_import=false)
Sets a suggested solution for the question.
& 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.
_enabledAssessmentLogging()
check wether assessment logging is enabled or not
setAdditionalContentEditingMode($additinalContentEditingMode)
setter for additional content editing mode for this question
getObjId()
Get the object id of the container object.
fetchAssoc($a_set)
Fetch row as associative array from result set.
setAuthor($author="")
Sets the authors name of the assQuestion object.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
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
saveQuestionDataToDb($original_id="")
static _replaceMediaObjectImageSrc($a_text, $a_direction=0)
replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
while($lm_rec=$ilDB->fetchAssoc($lm_set)) $data
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.