33 if (is_array($a_value) && isset($a_value[
'answer']) && is_array($a_value[
'answer'])) {
36 $answer->setPointsChecked((
float) ($a_value[
'points'][$index] ?? 0));
37 $answer->setPointsUnchecked((
float) ($a_value[
'points_unchecked'][$index] ?? 0));
38 if (isset($a_value[
'imagename'][$index])) {
39 $answer->setImage($a_value[
'imagename'][$index]);
41 $this->values[] = $answer;
56 if (!$this->post_wrapper->has($post_var)) {
60 $values = $this->post_wrapper->retrieve($post_var, $this->
refinery->custom()->transformation(fn ($v) => $v));
70 if (is_array($foundvalues)) {
72 if (is_array($foundvalues[
'answer'])) {
73 foreach ($foundvalues[
'answer'] as $aidx => $answervalue) {
74 if (((strlen($answervalue)) == 0) && (!isset($foundvalues[
'imagename']) || !isset($foundvalues[
'imagename'][$aidx]) || strlen($foundvalues[
'imagename'][$aidx]) == 0)) {
87 if (is_array($foundvalues[
'points'])) {
88 foreach ($foundvalues[
'points'] as $points) {
89 $points = str_replace(
',',
'.', $points);
93 if (((strlen($points)) == 0) || (!is_numeric($points))) {
98 foreach ($foundvalues[
'points_unchecked'] as $points) {
99 $points = str_replace(
',',
'.', $points);
100 if (((strlen($points)) == 0) || (!is_numeric($points))) {
111 if (is_array($_FILES) && count($_FILES) && $this->
getSingleline()) {
112 if (!$this->hideImages) {
113 if (is_array($_FILES[$this->
getPostVar()][
'error'][
'image'])) {
114 foreach ($_FILES[$this->
getPostVar()][
'error'][
'image'] as
$index => $error) {
118 case UPLOAD_ERR_FORM_SIZE:
119 case UPLOAD_ERR_INI_SIZE:
124 case UPLOAD_ERR_PARTIAL:
129 case UPLOAD_ERR_NO_FILE:
131 if (isset($a_value[
'imagename']) && (!strlen($foundvalues[
'imagename'][$index])) && (!strlen($foundvalues[
'answer'][$index]))) {
138 case UPLOAD_ERR_NO_TMP_DIR:
143 case UPLOAD_ERR_CANT_WRITE:
148 case UPLOAD_ERR_EXTENSION:
162 if (is_array($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'])) {
163 foreach ($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'] as
$index => $tmpname) {
166 if (isset($filename_arr[
"extension"])) {
167 $suffix = $filename_arr[
"extension"];
171 if (strlen($tmpname) && is_array($this->
getSuffixes())) {
181 if (is_array($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'])) {
182 foreach ($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'] as
$index => $tmpname) {
185 if (isset($filename_arr[
"extension"])) {
186 $suffix = $filename_arr[
"extension"];
190 if (strlen($tmpname)) {
192 if ($vir[0] ==
false) {
193 $this->
setAlert(
$lng->
txt(
"form_msg_file_virus_found") .
"<br />" . $vir[1]);
219 $tpl =
new ilTemplate(
"tpl.prop_multiplechoicewizardinput.html",
true,
true,
"Modules/TestQuestionPool");
221 foreach ($this->values as
$value) {
223 if (!$this->hideImages) {
224 if (strlen($value->getImage())) {
225 $imagename = $this->qstObject->getImagePathWeb() . $value->getImage();
226 if (($this->
getSingleline()) && ($this->qstObject->getThumbSize())) {
227 if (@file_exists($this->qstObject->getImagePath() . $this->qstObject->getThumbPrefix() . $value->getImage())) {
228 $imagename = $this->qstObject->getImagePathWeb() . $this->qstObject->getThumbPrefix() . $value->getImage();
231 $tpl->setCurrentBlock(
'image');
232 $tpl->setVariable(
'SRC_IMAGE', $imagename);
233 $tpl->setVariable(
'IMAGE_NAME', $value->getImage());
238 $tpl->setVariable(
"TXT_DELETE_EXISTING",
$lng->
txt(
"delete_existing_file"));
239 $tpl->setVariable(
"IMAGE_ROW_NUMBER",
$i);
241 $tpl->parseCurrentBlock();
243 $tpl->setCurrentBlock(
'addimage');
244 $tpl->setVariable(
"IMAGE_BROWSE",
$lng->
txt(
'select_file'));
245 $tpl->setVariable(
"IMAGE_ID", $this->
getPostVar() .
"[image][$i]");
246 $tpl->setVariable(
"IMAGE_SUBMIT",
$lng->
txt(
"upload"));
247 $tpl->setVariable(
"IMAGE_ROW_NUMBER",
$i);
249 $tpl->parseCurrentBlock();
252 if (is_object($value)) {
253 $tpl->setCurrentBlock(
"prop_text_propval");
258 $tpl->parseCurrentBlock();
259 $tpl->setCurrentBlock(
"prop_points_propval");
264 $tpl->parseCurrentBlock();
265 $tpl->setCurrentBlock(
"prop_points_unchecked_propval");
270 $tpl->parseCurrentBlock();
271 $tpl->setCurrentBlock(
"prop_answer_id_propval");
273 $tpl->parseCurrentBlock();
275 $tpl->setCurrentBlock(
'singleline');
277 $tpl->setVariable(
"SINGLELINE_ID", $this->
getPostVar() .
"[answer][$i]");
278 $tpl->setVariable(
"SINGLELINE_ROW_NUMBER",
$i);
282 $tpl->setVariable(
"DISABLED_SINGLELINE",
" disabled=\"disabled\"");
284 $tpl->parseCurrentBlock();
286 if (is_object($value)) {
287 $tpl->setCurrentBlock(
"prop_points_propval");
292 $tpl->parseCurrentBlock();
293 $tpl->setCurrentBlock(
"prop_points_unchecked_propval");
298 $tpl->parseCurrentBlock();
299 $tpl->setCurrentBlock(
"prop_answer_id_propval");
301 $tpl->parseCurrentBlock();
303 $tpl->setCurrentBlock(
'multiline');
308 $tpl->setVariable(
"MULTILINE_ID", $this->
getPostVar() .
"[answer][$i]");
309 $tpl->setVariable(
"MULTILINE_ROW_NUMBER",
$i);
313 $tpl->setVariable(
"DISABLED_MULTILINE",
" disabled=\"disabled\"");
315 $tpl->parseCurrentBlock();
318 $tpl->setCurrentBlock(
"move");
319 $tpl->setVariable(
"CMD_UP",
"cmd[up" . $this->
getFieldId() .
"][$i]");
320 $tpl->setVariable(
"CMD_DOWN",
"cmd[down" . $this->
getFieldId() .
"][$i]");
324 $tpl->parseCurrentBlock();
326 $tpl->setCurrentBlock(
"row");
328 $tpl->setVariable(
"ROW_NUMBER",
$i);
330 $tpl->setVariable(
"POINTS_ID", $this->
getPostVar() .
"[points][$i]");
331 $tpl->setVariable(
"POINTS_UNCHECKED_ID", $this->
getPostVar() .
"[points_unchecked][$i]");
332 $tpl->setVariable(
"CMD_ADD",
"cmd[add" . $this->
getFieldId() .
"][$i]");
333 $tpl->setVariable(
"CMD_REMOVE",
"cmd[remove" . $this->
getFieldId() .
"][$i]");
335 $tpl->setVariable(
"DISABLED_POINTS",
" disabled=\"disabled\"");
339 $tpl->parseCurrentBlock();
344 if (!$this->hideImages) {
346 $suff_str = $delim =
"";
348 $suff_str .= $delim .
"." .
$suffix;
351 $tpl->setCurrentBlock(
'allowed_image_suffixes');
352 $tpl->setVariable(
"TXT_ALLOWED_SUFFIXES",
$lng->
txt(
"file_allowed_suffixes") .
" " . $suff_str);
353 $tpl->parseCurrentBlock();
356 $tpl->setCurrentBlock(
"image_heading");
357 $tpl->setVariable(
"ANSWER_IMAGE",
$lng->
txt(
'answer_image'));
359 $tpl->parseCurrentBlock();
366 $tpl->setVariable(
"DELETE_IMAGE_HEADER",
$lng->
txt(
'delete_image_header'));
367 $tpl->setVariable(
"DELETE_IMAGE_QUESTION",
$lng->
txt(
'delete_image_question'));
368 $tpl->setVariable(
"ANSWER_TEXT",
$lng->
txt(
'answer_text'));
369 $tpl->setVariable(
"POINTS_TEXT",
$lng->
txt(
'points'));
370 $tpl->setVariable(
"COMMANDS_TEXT",
$lng->
txt(
'actions'));
371 $tpl->setVariable(
"POINTS_CHECKED_TEXT",
$lng->
txt(
'checkbox_checked'));
372 $tpl->setVariable(
"POINTS_UNCHECKED_TEXT",
$lng->
txt(
'checkbox_unchecked'));
380 $tpl->addJavascript(
"./Services/Form/js/ServiceFormWizardInput.js");
381 $tpl->addJavascript(
"./Modules/TestQuestionPool/templates/default/multiplechoicewizard.js");
386 $this->pending = $a_val;
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
static stripSlashesRecursive($a_data, bool $a_strip_html=true, string $a_allow="")
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...
static get(string $a_glyph, string $a_text="")
static virusHandling(string $a_file, string $a_orig_name='', bool $a_clean=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setVariable($variable, $value='')
Sets a variable value.
static _getUsedHTMLTagsAsString(string $a_module="")
Returns a string of all allowed HTML tags for text editing.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl