4 include_once
"./Modules/TestQuestionPool/classes/class.ilSingleChoiceWizardInputGUI.php";
22 $this->values = array();
23 if (is_array($a_value))
25 if (is_array($a_value[
'answer']))
27 foreach ($a_value[
'answer'] as $index =>
$value)
29 include_once
"./Modules/TestQuestionPool/classes/class.assAnswerMultipleResponseImage.php";
31 array_push($this->values, $answer);
46 include_once
"./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
49 if (is_array($foundvalues))
52 if (is_array($foundvalues[
'answer']))
54 foreach ($foundvalues[
'answer'] as $aidx => $answervalue)
56 if (((strlen($answervalue)) == 0) && (strlen($foundvalues[
'imagename'][$aidx]) == 0))
58 $this->
setAlert($lng->txt(
"msg_input_is_required"));
65 if (is_array($foundvalues[
'points']))
67 foreach ($foundvalues[
'points'] as $points)
69 if ($points > $max) $max = $points;
70 if (((strlen($points)) == 0) || (!is_numeric($points)))
72 $this->
setAlert($lng->txt(
"form_msg_numeric_value_required"));
76 foreach ($foundvalues[
'points_unchecked'] as $points)
78 if ($points > $max) $max = $points;
79 if (((strlen($points)) == 0) || (!is_numeric($points)))
81 $this->
setAlert($lng->txt(
"form_msg_numeric_value_required"));
88 $this->
setAlert($lng->txt(
"enter_enough_positive_points"));
92 if (is_array($_FILES) && count($_FILES) && $this->
getSingleline())
94 if (!$this->hideImages)
96 if (is_array($_FILES[$this->
getPostVar()][
'error'][
'image']))
98 foreach ($_FILES[$this->
getPostVar()][
'error'][
'image'] as $index => $error)
105 case UPLOAD_ERR_INI_SIZE:
106 $this->
setAlert($lng->txt(
"form_msg_file_size_exceeds"));
110 case UPLOAD_ERR_FORM_SIZE:
111 $this->
setAlert($lng->txt(
"form_msg_file_size_exceeds"));
115 case UPLOAD_ERR_PARTIAL:
116 $this->
setAlert($lng->txt(
"form_msg_file_partially_uploaded"));
120 case UPLOAD_ERR_NO_FILE:
123 if ((!strlen($foundvalues[
'imagename'][$index])) && (!strlen($foundvalues[
'answer'][$index])))
125 $this->
setAlert($lng->txt(
"form_msg_file_no_upload"));
131 case UPLOAD_ERR_NO_TMP_DIR:
132 $this->
setAlert($lng->txt(
"form_msg_file_missing_tmp_dir"));
136 case UPLOAD_ERR_CANT_WRITE:
137 $this->
setAlert($lng->txt(
"form_msg_file_cannot_write_to_disk"));
141 case UPLOAD_ERR_EXTENSION:
142 $this->
setAlert($lng->txt(
"form_msg_file_upload_stopped_ext"));
153 $this->
setAlert($lng->txt(
"form_msg_file_no_upload"));
158 if (is_array($_FILES[$this->
getPostVar()][
'tmp_name'][
'image']))
160 foreach ($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'] as $index => $tmpname)
164 $suffix = $filename_arr[
"extension"];
165 $mimetype = $_FILES[$this->
getPostVar()][
'type'][
'image'][$index];
166 $size_bytes = $_FILES[$this->
getPostVar()][
'size'][
'image'][$index];
168 if (strlen($tmpname) && is_array($this->
getSuffixes()))
172 $this->
setAlert($lng->txt(
"form_msg_file_wrong_file_type"));
179 if (is_array($_FILES[$this->
getPostVar()][
'tmp_name'][
'image']))
181 foreach ($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'] as $index => $tmpname)
185 $suffix = $filename_arr[
"extension"];
186 $mimetype = $_FILES[$this->
getPostVar()][
'type'][
'image'][$index];
187 $size_bytes = $_FILES[$this->
getPostVar()][
'size'][
'image'][$index];
189 if (strlen($tmpname))
192 if ($vir[0] ==
false)
194 $this->
setAlert($lng->txt(
"form_msg_file_virus_found").
"<br />".$vir[1]);
205 $this->
setAlert($lng->txt(
"msg_input_is_required"));
221 $tpl =
new ilTemplate(
"tpl.prop_multiplechoicewizardinput.html",
true,
true,
"Modules/TestQuestionPool");
223 foreach ($this->values as
$value)
227 if (!$this->hideImages)
229 if (strlen($value->getImage()))
231 $imagename = $this->qstObject->getImagePathWeb() . $value->getImage();
232 if (($this->
getSingleline()) && ($this->qstObject->getThumbSize()))
234 if (@file_exists($this->qstObject->getImagePath() . $this->qstObject->getThumbPrefix() . $value->getImage()))
236 $imagename = $this->qstObject->getImagePathWeb() . $this->qstObject->getThumbPrefix() . $value->getImage();
239 $tpl->setCurrentBlock(
'image');
240 $tpl->setVariable(
'SRC_IMAGE', $imagename);
241 $tpl->setVariable(
'IMAGE_NAME', $value->getImage());
243 $tpl->setVariable(
"TXT_DELETE_EXISTING", $lng->txt(
"delete_existing_file"));
244 $tpl->setVariable(
"IMAGE_ROW_NUMBER", $i);
246 $tpl->parseCurrentBlock();
248 $tpl->setCurrentBlock(
'addimage');
249 $tpl->setVariable(
"IMAGE_ID", $this->
getPostVar() .
"[image][$i]");
250 $tpl->setVariable(
"IMAGE_SUBMIT", $lng->txt(
"upload"));
251 $tpl->setVariable(
"IMAGE_ROW_NUMBER", $i);
253 $tpl->parseCurrentBlock();
256 if (is_object($value))
258 $tpl->setCurrentBlock(
"prop_text_propval");
260 $tpl->parseCurrentBlock();
261 $tpl->setCurrentBlock(
"prop_points_propval");
263 $tpl->parseCurrentBlock();
264 $tpl->setCurrentBlock(
"prop_points_unchecked_propval");
266 $tpl->parseCurrentBlock();
268 $tpl->setCurrentBlock(
'singleline');
270 $tpl->setVariable(
"SINGLELINE_ID", $this->
getPostVar() .
"[answer][$i]");
271 $tpl->setVariable(
"SINGLELINE_ROW_NUMBER", $i);
276 $tpl->setVariable(
"DISABLED_SINGLELINE",
" disabled=\"disabled\"");
278 $tpl->parseCurrentBlock();
282 if (is_object($value))
284 $tpl->setCurrentBlock(
"prop_points_propval");
286 $tpl->parseCurrentBlock();
287 $tpl->setCurrentBlock(
"prop_points_unchecked_propval");
289 $tpl->parseCurrentBlock();
291 $tpl->setCurrentBlock(
'multiline');
293 $tpl->setVariable(
"MULTILINE_ID", $this->
getPostVar() .
"[answer][$i]");
294 $tpl->setVariable(
"MULTILINE_ROW_NUMBER", $i);
298 $tpl->setVariable(
"DISABLED_MULTILINE",
" disabled=\"disabled\"");
300 $tpl->parseCurrentBlock();
304 $tpl->setCurrentBlock(
"move");
305 $tpl->setVariable(
"CMD_UP",
"cmd[up" . $this->
getFieldId() .
"][$i]");
306 $tpl->setVariable(
"CMD_DOWN",
"cmd[down" . $this->
getFieldId() .
"][$i]");
310 $tpl->parseCurrentBlock();
312 $tpl->setCurrentBlock(
"row");
314 $tpl->setVariable(
"ROW_NUMBER", $i);
316 $tpl->setVariable(
"POINTS_ID", $this->
getPostVar() .
"[points][$i]");
317 $tpl->setVariable(
"POINTS_UNCHECKED_ID", $this->
getPostVar() .
"[points_unchecked][$i]");
318 $tpl->setVariable(
"CMD_ADD",
"cmd[add" . $this->
getFieldId() .
"][$i]");
319 $tpl->setVariable(
"CMD_REMOVE",
"cmd[remove" . $this->
getFieldId() .
"][$i]");
322 $tpl->setVariable(
"DISABLED_POINTS",
" disabled=\"disabled\"");
326 $tpl->parseCurrentBlock();
332 if (!$this->hideImages)
336 $suff_str = $delim =
"";
339 $suff_str.= $delim.
".".
$suffix;
342 $tpl->setCurrentBlock(
'allowed_image_suffixes');
343 $tpl->setVariable(
"TXT_ALLOWED_SUFFIXES", $lng->txt(
"file_allowed_suffixes").
" ".$suff_str);
344 $tpl->parseCurrentBlock();
347 $tpl->setCurrentBlock(
"image_heading");
348 $tpl->setVariable(
"ANSWER_IMAGE", $lng->txt(
'answer_image'));
350 $tpl->parseCurrentBlock();
355 $tpl->setVariable(
"TEXT_YES", $lng->txt(
'yes'));
356 $tpl->setVariable(
"TEXT_NO", $lng->txt(
'no'));
357 $tpl->setVariable(
"DELETE_IMAGE_HEADER", $lng->txt(
'delete_image_header'));
358 $tpl->setVariable(
"DELETE_IMAGE_QUESTION", $lng->txt(
'delete_image_question'));
359 $tpl->setVariable(
"ANSWER_TEXT", $lng->txt(
'answer_text'));
360 $tpl->setVariable(
"POINTS_TEXT", $lng->txt(
'points'));
361 $tpl->setVariable(
"COMMANDS_TEXT", $lng->txt(
'actions'));
362 $tpl->setVariable(
"POINTS_CHECKED_TEXT", $lng->txt(
'checkbox_checked'));
363 $tpl->setVariable(
"POINTS_UNCHECKED_TEXT", $lng->txt(
'checkbox_unchecked'));
365 $a_tpl->setCurrentBlock(
"prop_generic");
366 $a_tpl->setVariable(
"PROP_GENERIC",
$tpl->get());
367 $a_tpl->parseCurrentBlock();
370 $tpl->addJavascript(
"./Services/Form/js/ServiceFormWizardInput.js");
371 $tpl->addJavascript(
"./Modules/TestQuestionPool/templates/default/multiplechoicewizard.js");