4 require_once
'Services/UIComponent/Glyph/classes/class.ilGlyphGUI.php';
37 $this->validationRegexp =
'';
48 if (is_array($a_value)) {
49 if (is_array($a_value[
'answer'])) {
51 include_once
"./Modules/TestQuestionPool/classes/class.assAnswerBinaryStateImage.php";
53 array_push($this->values, $answer);
66 $this->suffixes = $a_suffixes;
76 $this->hideImages = $a_hide;
91 $this->showPoints = $a_value;
106 $this->values = $a_values;
126 $this->singleline = $a_value;
146 $this->qstObject = &$a_value;
166 $this->allowMove = $a_allow_move;
189 include_once
"./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
206 if (is_array($foundvalues)) {
208 if (is_array($foundvalues[
'answer'])) {
209 foreach ($foundvalues[
'answer'] as $aidx => $answervalue) {
210 if (((strlen($answervalue)) == 0) && (!isset($foundvalues[
'imagename'][$aidx]) || strlen($foundvalues[
'imagename'][$aidx]) == 0)) {
218 if (is_array($foundvalues[
'points'])) {
219 foreach ($foundvalues[
'points'] as $points) {
220 if ($points > $max) {
223 if (((strlen($points)) == 0) || (!is_numeric($points))) {
224 $this->
setAlert(
$lng->txt(
"form_msg_numeric_value_required"));
230 $this->
setAlert(
$lng->txt(
"enter_enough_positive_points"));
235 if (is_array($_FILES[$this->
getPostVar()][
'error'][
'image'])) {
236 foreach ($_FILES[$this->
getPostVar()][
'error'][
'image'] as
$index => $error) {
240 case UPLOAD_ERR_INI_SIZE:
241 $this->
setAlert(
$lng->txt(
"form_msg_file_size_exceeds"));
245 case UPLOAD_ERR_FORM_SIZE:
246 $this->
setAlert(
$lng->txt(
"form_msg_file_size_exceeds"));
250 case UPLOAD_ERR_PARTIAL:
251 $this->
setAlert(
$lng->txt(
"form_msg_file_partially_uploaded"));
255 case UPLOAD_ERR_NO_FILE:
257 if ((!strlen($foundvalues[
'imagename'][$index])) && (!strlen($foundvalues[
'answer'][$index]))) {
264 case UPLOAD_ERR_NO_TMP_DIR:
265 $this->
setAlert(
$lng->txt(
"form_msg_file_missing_tmp_dir"));
269 case UPLOAD_ERR_CANT_WRITE:
270 $this->
setAlert(
$lng->txt(
"form_msg_file_cannot_write_to_disk"));
274 case UPLOAD_ERR_EXTENSION:
275 $this->
setAlert(
$lng->txt(
"form_msg_file_upload_stopped_ext"));
288 if (is_array($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'])) {
289 foreach ($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'] as
$index => $tmpname) {
292 $suffix = $filename_arr[
"extension"];
296 if (strlen($tmpname) && is_array($this->
getSuffixes())) {
298 $this->
setAlert(
$lng->txt(
"form_msg_file_wrong_file_type"));
305 if (is_array($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'])) {
306 foreach ($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'] as
$index => $tmpname) {
309 $suffix = $filename_arr[
"extension"];
313 if (strlen($tmpname)) {
315 if ($vir[0] ==
false) {
316 $this->
setAlert(
$lng->txt(
"form_msg_file_virus_found") .
"<br />" . $vir[1]);
339 $tpl =
new ilTemplate(
"tpl.prop_singlechoicewizardinput.html",
true,
true,
"Modules/TestQuestionPool");
341 foreach ($this->values as
$value) {
343 if (!$this->hideImages) {
344 if (strlen($value->getImage())) {
345 $imagename = $this->qstObject->getImagePathWeb() . $value->getImage();
346 if (($this->
getSingleline()) && ($this->qstObject->getThumbSize())) {
347 if (@file_exists($this->qstObject->getImagePath() . $this->qstObject->getThumbPrefix() . $value->getImage())) {
348 $imagename = $this->qstObject->getImagePathWeb() . $this->qstObject->getThumbPrefix() . $value->getImage();
351 $tpl->setCurrentBlock(
'image');
352 $tpl->setVariable(
'SRC_IMAGE', $imagename);
353 $tpl->setVariable(
'IMAGE_NAME', $value->getImage());
355 $tpl->setVariable(
"TXT_DELETE_EXISTING",
$lng->txt(
"delete_existing_file"));
356 $tpl->setVariable(
"IMAGE_ROW_NUMBER",
$i);
358 $tpl->parseCurrentBlock();
360 $tpl->setCurrentBlock(
'addimage');
361 $tpl->setVariable(
"IMAGE_BROWSE",
$lng->txt(
'select_file'));
362 $tpl->setVariable(
"IMAGE_ID", $this->
getPostVar() .
"[image][$i]");
363 $tpl->setVariable(
"IMAGE_SUBMIT",
$lng->txt(
"upload"));
364 $tpl->setVariable(
"IMAGE_ROW_NUMBER",
$i);
366 $tpl->parseCurrentBlock();
369 if (is_object($value)) {
370 $tpl->setCurrentBlock(
"prop_text_propval");
372 $tpl->parseCurrentBlock();
374 $tpl->setCurrentBlock(
"prop_points_propval");
376 $tpl->parseCurrentBlock();
378 $tpl->setCurrentBlock(
"prop_answer_id_propval");
380 $tpl->parseCurrentBlock();
382 $tpl->setCurrentBlock(
'singleline');
384 $tpl->setVariable(
"SINGLELINE_ID", $this->
getPostVar() .
"[answer][$i]");
385 $tpl->setVariable(
"SINGLELINE_ROW_NUMBER",
$i);
389 $tpl->setVariable(
"DISABLED_SINGLELINE",
" disabled=\"disabled\"");
391 $tpl->parseCurrentBlock();
393 if (is_object($value)) {
395 $tpl->setCurrentBlock(
"prop_points_propval");
397 $tpl->parseCurrentBlock();
399 $tpl->setCurrentBlock(
"prop_answer_id_propval");
401 $tpl->parseCurrentBlock();
403 $tpl->setCurrentBlock(
'multiline');
405 $tpl->setVariable(
"MULTILINE_ID", $this->
getPostVar() .
"[answer][$i]");
406 $tpl->setVariable(
"MULTILINE_ROW_NUMBER",
$i);
409 $tpl->setVariable(
"DISABLED_MULTILINE",
" disabled=\"disabled\"");
411 $tpl->parseCurrentBlock();
414 $tpl->setCurrentBlock(
"move");
415 $tpl->setVariable(
"CMD_UP",
"cmd[up" . $this->
getFieldId() .
"][$i]");
416 $tpl->setVariable(
"CMD_DOWN",
"cmd[down" . $this->
getFieldId() .
"][$i]");
420 $tpl->parseCurrentBlock();
423 $tpl->setCurrentBlock(
"points");
424 $tpl->setVariable(
"POINTS_ID", $this->
getPostVar() .
"[points][$i]");
426 $tpl->setVariable(
"POINTS_ROW_NUMBER",
$i);
427 $tpl->parseCurrentBlock();
429 $tpl->setCurrentBlock(
"row");
431 $tpl->setVariable(
"ROW_NUMBER",
$i);
433 $tpl->setVariable(
"CMD_ADD",
"cmd[add" . $this->
getFieldId() .
"][$i]");
434 $tpl->setVariable(
"CMD_REMOVE",
"cmd[remove" . $this->
getFieldId() .
"][$i]");
436 $tpl->setVariable(
"DISABLED_POINTS",
" disabled=\"disabled\"");
440 $tpl->parseCurrentBlock();
445 if (!$this->hideImages) {
447 $suff_str = $delim =
"";
449 $suff_str .= $delim .
"." .
$suffix;
452 $tpl->setCurrentBlock(
'allowed_image_suffixes');
453 $tpl->setVariable(
"TXT_ALLOWED_SUFFIXES",
$lng->txt(
"file_allowed_suffixes") .
" " . $suff_str);
454 $tpl->parseCurrentBlock();
456 $tpl->setCurrentBlock(
"image_heading");
457 $tpl->setVariable(
"ANSWER_IMAGE",
$lng->txt(
'answer_image'));
459 $tpl->parseCurrentBlock();
464 $tpl->setCurrentBlock(
"points_heading");
465 $tpl->setVariable(
"POINTS_TEXT",
$lng->txt(
'points'));
466 $tpl->parseCurrentBlock();
470 $tpl->setVariable(
"TEXT_YES",
$lng->txt(
'yes'));
471 $tpl->setVariable(
"TEXT_NO",
$lng->txt(
'no'));
472 $tpl->setVariable(
"DELETE_IMAGE_HEADER",
$lng->txt(
'delete_image_header'));
473 $tpl->setVariable(
"DELETE_IMAGE_QUESTION",
$lng->txt(
'delete_image_question'));
474 $tpl->setVariable(
"ANSWER_TEXT",
$lng->txt(
'answer_text'));
475 $tpl->setVariable(
"COMMANDS_TEXT",
$lng->txt(
'actions'));
477 $a_tpl->setCurrentBlock(
"prop_generic");
478 $a_tpl->setVariable(
"PROP_GENERIC",
$tpl->get());
479 $a_tpl->parseCurrentBlock();
483 $tpl->addJavascript(
"./Services/Form/js/ServiceFormWizardInput.js");
484 $tpl->addJavascript(
"./Modules/TestQuestionPool/templates/default/singlechoicewizard.js");
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
getMaxLength()
Get Max Length.
static virusHandling($a_file, $a_orig_name="", $a_clean=true)
scan file for viruses and clean files if possible
static _getUsedHTMLTagsAsString($a_module="")
Returns a string of all allowed HTML tags for text editing.
Class for answers with a binary state indicator.
static get($a_glyph, $a_text="")
Get glyph html.
setSize($a_size)
Set Size.
static stripSlashesRecursive($a_data, $a_strip_html=true, $a_allow="")
Strip slashes from array and sub-arrays.
__construct(Container $dic, ilPlugin $plugin)
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl