31 if (is_array($a_value) && is_array($a_value[
'correctness'])) {
32 foreach ($this->values as $index =>
$value) {
33 if (isset($a_value[
'correctness'][$index])) {
34 $this->values[$index]->setCorrectness((
bool) $a_value[
'correctness'][$index]);
36 $this->values[$index]->setCorrectness(
null);
46 if (!is_array(
$data[
'correctness']) || count(
$data[
'correctness']) < count($this->values)) {
47 $this->
setAlert($this->
lng->txt(
"msg_input_is_required"));
56 $tpl =
new ilTemplate(
"tpl.prop_kprimchoicecorrection_input.html",
true,
true,
"components/ILIAS/TestQuestionPool");
58 foreach ($this->values as
$value) {
63 if ($value->getImageFile() !==
null 64 && $value->getImageFile() !==
'') {
65 $imagename = $value->getImageWebPath();
67 if (($this->
getSingleline()) && ($this->qstObject->getThumbSize())) {
68 if (@file_exists($value->getThumbFsPath())) {
69 $imagename = $value->getThumbWebPath();
73 $tpl->setCurrentBlock(
'image');
74 $tpl->setVariable(
'SRC_IMAGE', $imagename);
75 $tpl->setVariable(
'IMAGE_NAME', $value->getImageFile());
77 $tpl->parseCurrentBlock();
80 $tpl->setCurrentBlock(
"row");
82 $tpl->setVariable(
"ANSWER", $value->getAnswertext());
85 $tpl->setVariable(
"ROW_NUMBER", $value->getPosition());
86 $tpl->setVariable(
"ID", $this->
getPostVar() .
"[answer][{$value->getPosition()}]");
89 "CORRECTNESS_TRUE_ID",
90 $this->
getPostVar() .
"[correctness][{$value->getPosition()}][true]" 93 "CORRECTNESS_FALSE_ID",
94 $this->
getPostVar() .
"[correctness][{$value->getPosition()}][false]" 96 $tpl->setVariable(
"CORRECTNESS_TRUE_VALUE", 1);
97 $tpl->setVariable(
"CORRECTNESS_FALSE_VALUE", 0);
99 if ($value->getCorrectness() !==
null) {
100 if ($value->getCorrectness()) {
101 $tpl->setVariable(
'CORRECTNESS_TRUE_SELECTED',
' checked="checked"');
103 $tpl->setVariable(
'CORRECTNESS_FALSE_SELECTED',
' checked="checked"');
108 $tpl->setVariable(
"DISABLED_CORRECTNESS",
" disabled=\"disabled\"");
111 $tpl->parseCurrentBlock();
114 $tpl->setVariable(
"TRUE_TEXT", $this->qstObject->getTrueOptionLabelTranslation($this->lng, $this->qstObject->getOptionLabel()));
115 $tpl->setVariable(
"FALSE_TEXT", $this->qstObject->getFalseOptionLabelTranslation($this->lng, $this->qstObject->getOptionLabel()));
118 $tpl->setVariable(
"DELETE_IMAGE_HEADER", $this->
lng->txt(
'delete_image_header'));
119 $tpl->setVariable(
"DELETE_IMAGE_QUESTION", $this->
lng->txt(
'delete_image_question'));
120 $tpl->setVariable(
"ANSWER_TEXT", $this->
lng->txt(
'answer'));
122 $tpl->setVariable(
"OPTIONS_TEXT", $this->
lng->txt(
'options'));
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setVariable($variable, $value='')
Sets a variable value.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)