31 if (is_array($a_value) && is_array($a_value[
'correctness'])) {
33 if (isset($a_value[
'correctness'][
$index])) {
34 $this->values[
$index]->setCorrectness((
bool) $a_value[
'correctness'][$index]);
36 $this->values[
$index]->setCorrectness(null);
49 if (is_array($foundvalues)) {
50 if (!isset($foundvalues[
'correctness']) || count($foundvalues[
'correctness']) < count($this->values)) {
64 $tpl =
new ilTemplate(
"tpl.prop_kprimchoicecorrection_input.html",
true,
true,
"Modules/TestQuestionPool");
66 foreach ($this->values as
$value) {
71 if (strlen($value->getImageFile())) {
72 $imagename = $value->getImageWebPath();
74 if (($this->
getSingleline()) && ($this->qstObject->getThumbSize())) {
75 if (@file_exists($value->getThumbFsPath())) {
76 $imagename = $value->getThumbWebPath();
80 $tpl->setCurrentBlock(
'image');
81 $tpl->setVariable(
'SRC_IMAGE', $imagename);
82 $tpl->setVariable(
'IMAGE_NAME', $value->getImageFile());
84 $tpl->parseCurrentBlock();
87 $tpl->setCurrentBlock(
"row");
89 $tpl->setVariable(
"ANSWER", $value->getAnswertext());
92 $tpl->setVariable(
"ROW_NUMBER", $value->getPosition());
93 $tpl->setVariable(
"ID", $this->
getPostVar() .
"[answer][{$value->getPosition()}]");
96 "CORRECTNESS_TRUE_ID",
97 $this->
getPostVar() .
"[correctness][{$value->getPosition()}][true]" 100 "CORRECTNESS_FALSE_ID",
101 $this->
getPostVar() .
"[correctness][{$value->getPosition()}][false]" 103 $tpl->setVariable(
"CORRECTNESS_TRUE_VALUE", 1);
104 $tpl->setVariable(
"CORRECTNESS_FALSE_VALUE", 0);
106 if ($value->getCorrectness() !== null) {
107 if ($value->getCorrectness()) {
108 $tpl->setVariable(
'CORRECTNESS_TRUE_SELECTED',
' checked="checked"');
110 $tpl->setVariable(
'CORRECTNESS_FALSE_SELECTED',
' checked="checked"');
115 $tpl->setVariable(
"DISABLED_CORRECTNESS",
" disabled=\"disabled\"");
118 $tpl->parseCurrentBlock();
121 $tpl->setVariable(
"TRUE_TEXT", $this->qstObject->getTrueOptionLabelTranslation($this->lng, $this->qstObject->getOptionLabel()));
122 $tpl->setVariable(
"FALSE_TEXT", $this->qstObject->getFalseOptionLabelTranslation($this->lng, $this->qstObject->getOptionLabel()));
125 $tpl->setVariable(
"DELETE_IMAGE_HEADER", $this->
lng->txt(
'delete_image_header'));
126 $tpl->setVariable(
"DELETE_IMAGE_QUESTION", $this->
lng->txt(
'delete_image_question'));
127 $tpl->setVariable(
"ANSWER_TEXT", $this->
lng->txt(
'answer'));
129 $tpl->setVariable(
"OPTIONS_TEXT", $this->
lng->txt(
'options'));
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setVariable($variable, $value='')
Sets a variable value.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)