51 $this->validationRegexp =
'';
53 $this->post_wrapper = $DIC->http()->wrapper()->post();
58 $this->values = array();
59 if (is_array($a_value)) {
60 if (is_array($a_value[
'answer'])) {
62 $points = (float) str_replace(
",",
".", $a_value[
'points'][
$index]);
69 (
int) $a_value[
'answer_id'][$index]
71 if (isset($a_value[
'imagename'][$index])) {
72 $answer->setImage($a_value[
'imagename'][$index]);
74 $this->values[] = $answer;
95 $this->suffixes = $a_suffixes;
105 $this->hideImages = $a_hide;
120 $this->showPoints = $a_value;
135 $this->values = $a_values;
155 $this->singleline = $a_value;
175 $this->qstObject = &$a_value;
195 $this->allowMove = $a_allow_move;
227 include_once
"./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
237 if (is_array($foundvalues)) {
239 if (is_array($foundvalues[
'answer'])) {
240 foreach ($foundvalues[
'answer'] as $aidx => $answervalue) {
241 if (((strlen($answervalue)) == 0) && (!isset($foundvalues[
'imagename'][$aidx]) || strlen($foundvalues[
'imagename'][$aidx]) == 0)) {
254 if (is_array($foundvalues[
'points'])) {
255 foreach ($foundvalues[
'points'] as $points) {
256 $points = str_replace(
',',
'.', $points);
257 if ($points > $max) {
260 if (((strlen($points)) == 0) || (!is_numeric($points))) {
272 if (is_array($_FILES[$this->
getPostVar()][
'error'][
'image'])) {
273 foreach ($_FILES[$this->
getPostVar()][
'error'][
'image'] as
$index => $error) {
277 case UPLOAD_ERR_FORM_SIZE:
278 case UPLOAD_ERR_INI_SIZE:
283 case UPLOAD_ERR_PARTIAL:
288 case UPLOAD_ERR_NO_FILE:
290 if ((!isset($foundvalues[
'imagename'][$index])) && (!strlen($foundvalues[
'answer'][$index]))) {
297 case UPLOAD_ERR_NO_TMP_DIR:
302 case UPLOAD_ERR_CANT_WRITE:
307 case UPLOAD_ERR_EXTENSION:
321 if (is_array($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'])) {
322 foreach ($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'] as
$index => $tmpname) {
326 $suffix = $filename_arr[
"extension"];
330 if (strlen($tmpname) && is_array($this->
getSuffixes())) {
340 if (is_array($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'])) {
341 foreach ($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'] as
$index => $tmpname) {
345 $suffix = $filename_arr[
"extension"];
349 if (strlen($tmpname)) {
351 if ($vir[0] ==
false) {
352 $this->
setAlert(
$lng->
txt(
"form_msg_file_virus_found") .
"<br />" . $vir[1]);
376 $tpl =
new ilTemplate(
"tpl.prop_singlechoicewizardinput.html",
true,
true,
"Modules/TestQuestionPool");
378 foreach ($this->values as
$value) {
380 if (!$this->hideImages) {
381 if (strlen($value->getImage())) {
382 $imagename = $this->qstObject->getImagePathWeb() . $value->getImage();
383 if (($this->
getSingleline()) && ($this->qstObject->getThumbSize())) {
384 if (@file_exists($this->qstObject->getImagePath() . $this->qstObject->getThumbPrefix() . $value->getImage())) {
385 $imagename = $this->qstObject->getImagePathWeb() . $this->qstObject->getThumbPrefix() . $value->getImage();
388 $tpl->setCurrentBlock(
'image');
389 $tpl->setVariable(
'SRC_IMAGE', $imagename);
390 $tpl->setVariable(
'IMAGE_NAME', $value->getImage());
395 $tpl->setVariable(
"TXT_DELETE_EXISTING",
$lng->
txt(
"delete_existing_file"));
396 $tpl->setVariable(
"IMAGE_ROW_NUMBER",
$i);
398 $tpl->parseCurrentBlock();
400 $tpl->setCurrentBlock(
'addimage');
401 $tpl->setVariable(
"IMAGE_BROWSE",
$lng->
txt(
'select_file'));
402 $tpl->setVariable(
"IMAGE_ID", $this->
getPostVar() .
"[image][$i]");
403 $tpl->setVariable(
"IMAGE_SUBMIT",
$lng->
txt(
"upload"));
404 $tpl->setVariable(
"IMAGE_ROW_NUMBER",
$i);
406 $tpl->parseCurrentBlock();
409 if (is_object($value)) {
410 $tpl->setCurrentBlock(
"prop_text_propval");
415 $tpl->parseCurrentBlock();
417 $tpl->setCurrentBlock(
"prop_points_propval");
422 $tpl->parseCurrentBlock();
424 $tpl->setCurrentBlock(
"prop_answer_id_propval");
426 $tpl->parseCurrentBlock();
428 $tpl->setCurrentBlock(
'singleline');
430 $tpl->setVariable(
"SINGLELINE_ID", $this->
getPostVar() .
"[answer][$i]");
431 $tpl->setVariable(
"SINGLELINE_ROW_NUMBER",
$i);
435 $tpl->setVariable(
"DISABLED_SINGLELINE",
" disabled=\"disabled\"");
437 $tpl->parseCurrentBlock();
439 if (is_object($value)) {
441 $tpl->setCurrentBlock(
"prop_points_propval");
446 $tpl->parseCurrentBlock();
448 $tpl->setCurrentBlock(
"prop_answer_id_propval");
450 $tpl->parseCurrentBlock();
452 $tpl->setCurrentBlock(
'multiline');
457 $tpl->setVariable(
"MULTILINE_ID", $this->
getPostVar() .
"[answer][$i]");
458 $tpl->setVariable(
"MULTILINE_ROW_NUMBER",
$i);
462 $tpl->setVariable(
"DISABLED_MULTILINE",
" disabled=\"disabled\"");
464 $tpl->parseCurrentBlock();
467 $tpl->setCurrentBlock(
"move");
468 $tpl->setVariable(
"CMD_UP",
"cmd[up" . $this->
getFieldId() .
"][$i]");
469 $tpl->setVariable(
"CMD_DOWN",
"cmd[down" . $this->
getFieldId() .
"][$i]");
473 $tpl->parseCurrentBlock();
476 $tpl->setCurrentBlock(
"points");
477 $tpl->setVariable(
"POINTS_ID", $this->
getPostVar() .
"[points][$i]");
479 $tpl->setVariable(
"POINTS_ROW_NUMBER",
$i);
480 $tpl->parseCurrentBlock();
482 $tpl->setCurrentBlock(
"row");
484 $tpl->setVariable(
"ROW_NUMBER",
$i);
486 $tpl->setVariable(
"CMD_ADD",
"cmd[add" . $this->
getFieldId() .
"][$i]");
487 $tpl->setVariable(
"CMD_REMOVE",
"cmd[remove" . $this->
getFieldId() .
"][$i]");
489 $tpl->setVariable(
"DISABLED_POINTS",
" disabled=\"disabled\"");
493 $tpl->parseCurrentBlock();
498 if (!$this->hideImages) {
500 $suff_str = $delim =
"";
502 $suff_str .= $delim .
"." .
$suffix;
505 $tpl->setCurrentBlock(
'allowed_image_suffixes');
506 $tpl->setVariable(
"TXT_ALLOWED_SUFFIXES",
$lng->
txt(
"file_allowed_suffixes") .
" " . $suff_str);
507 $tpl->parseCurrentBlock();
509 $tpl->setCurrentBlock(
"image_heading");
510 $tpl->setVariable(
"ANSWER_IMAGE",
$lng->
txt(
'answer_image'));
512 $tpl->parseCurrentBlock();
517 $tpl->setCurrentBlock(
"points_heading");
518 $tpl->setVariable(
"POINTS_TEXT",
$lng->
txt(
'points'));
519 $tpl->parseCurrentBlock();
525 $tpl->setVariable(
"DELETE_IMAGE_HEADER",
$lng->
txt(
'delete_image_header'));
526 $tpl->setVariable(
"DELETE_IMAGE_QUESTION",
$lng->
txt(
'delete_image_question'));
527 $tpl->setVariable(
"ANSWER_TEXT",
$lng->
txt(
'answer_text'));
528 $tpl->setVariable(
"COMMANDS_TEXT",
$lng->
txt(
'actions'));
536 $tpl->addJavascript(
"./Services/Form/js/ServiceFormWizardInput.js");
537 $tpl->addJavascript(
"./Modules/TestQuestionPool/templates/default/singlechoicewizard.js");
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="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static virusHandling(string $a_file, string $a_orig_name='', bool $a_clean=true)
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)
setMaxLength(?int $a_maxlength)
__construct(Container $dic, ilPlugin $plugin)
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl