23 $answers = $this->forms_helper->transformArray($a_value,
'answer', $this->
refinery->kindlyTo()->string());
24 $points = $this->forms_helper->transformPoints($a_value,
'points');
25 $points_unchecked = $this->forms_helper->transformPoints($a_value,
'points_unchecked');
28 foreach ($answers as $index =>
$value) {
31 $points[$index] ?? 0.0,
33 $points_unchecked[$index] ?? 0.0
35 $this->values[] = $answer;
47 if (!is_array(
$data)) {
48 $this->
setAlert($this->
lng->txt(
'msg_input_is_required'));
54 if (!is_array($answers)) {
60 $result = $this->forms_helper->checkPointsInputEnoughPositive(
$data,
true);
61 if (!is_array($result)) {
78 $tpl =
new ilTemplate(
"tpl.prop_essaykeywordswizardinput.html",
true,
true,
"components/ILIAS/TestQuestionPool");
80 foreach ($this->values as
$value) {
82 if (is_object($value)) {
83 $tpl->setCurrentBlock(
"prop_text_propval");
88 $tpl->parseCurrentBlock();
89 $tpl->setCurrentBlock(
"prop_points_propval");
94 $tpl->parseCurrentBlock();
96 $tpl->setCurrentBlock(
'singleline');
97 $tpl->setVariable(
"SIZE", $this->
getSize());
98 $tpl->setVariable(
"SINGLELINE_ID", $this->
getPostVar() .
"[answer][$i]");
99 $tpl->setVariable(
"SINGLELINE_ROW_NUMBER", $i);
100 $tpl->setVariable(
"SINGLELINE_POST_VAR", $this->
getPostVar());
103 $tpl->setVariable(
"DISABLED_SINGLELINE",
" disabled=\"disabled\"");
105 $tpl->parseCurrentBlock();
108 if (is_object($value)) {
109 $tpl->setCurrentBlock(
"prop_points_propval");
114 $tpl->parseCurrentBlock();
119 $tpl->setCurrentBlock(
"row");
120 $tpl->setVariable(
"POST_VAR", $this->
getPostVar());
121 $tpl->setVariable(
"ROW_NUMBER", $i);
122 $tpl->setVariable(
"ID", $this->
getPostVar() .
"[answer][$i]");
123 $tpl->setVariable(
"POINTS_ID", $this->
getPostVar() .
"[points][$i]");
125 $tpl->setVariable(
"DISABLED_POINTS",
" disabled=\"disabled\"");
127 $tpl->setVariable(
"ADD_BUTTON", $this->
renderer->render(
128 $this->glyph_factory->add()->withAction(
'#')
130 $tpl->setVariable(
"REMOVE_BUTTON", $this->
renderer->render(
131 $this->glyph_factory->remove()->withAction(
'#')
133 $tpl->parseCurrentBlock();
137 $tpl->setVariable(
"ELEMENT_ID", $this->
getPostVar());
138 $tpl->setVariable(
"TEXT_YES",
$lng->
txt(
'yes'));
139 $tpl->setVariable(
"TEXT_NO",
$lng->
txt(
'no'));
140 $tpl->setVariable(
"DELETE_IMAGE_HEADER",
$lng->
txt(
'delete_image_header'));
141 $tpl->setVariable(
"DELETE_IMAGE_QUESTION",
$lng->
txt(
'delete_image_question'));
142 $tpl->setVariable(
"ANSWER_TEXT",
$lng->
txt(
'answer_text'));
143 $tpl->setVariable(
"POINTS_TEXT",
$lng->
txt(
'points'));
144 $tpl->setVariable(
"COMMANDS_TEXT",
$lng->
txt(
'actions'));
145 $tpl->setVariable(
"POINTS_CHECKED_TEXT",
$lng->
txt(
'checkbox_checked'));
153 $tpl->addJavascript(
"assets/js/answerwizardinput.js");
154 $tpl->addJavascript(
"assets/js/essaykeywordwizard.js");
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...
ASS_AnswerBinaryStateImage is a class for answers with a binary state indicator (checked/unchecked, set/unset) and an image file.
setVariable($variable, $value='')
Sets a variable value.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)