60 public function __construct($a_title =
"", $a_postvar =
"")
65 $this->
lng = $DIC->language();
66 $this->tpl = $DIC->ui()->mainTemplate();
71 $this->validationRegexp =
"";
77 $this->dodging_files =
new stdClass();
98 $this->suffixes = $a_suffixes;
162 $submittedElements = $this->
getInput();
164 if ($F && ((array) $this->dodging_files) !== []) {
165 $F = array_merge([self::FILE_DATA_INDEX_DODGING_FILE => (array) $this->dodging_files], $F);
168 if ($this->
getRequired() && !is_array($F[
'error'])) {
169 $this->
setAlert($this->
lng->txt(
"form_msg_file_no_upload"));
172 foreach ($F[
'error'] as
$index => $error) {
176 case UPLOAD_ERR_FORM_SIZE:
177 case UPLOAD_ERR_INI_SIZE:
178 $this->
setAlert($this->
lng->txt(
"form_msg_file_size_exceeds"));
182 case UPLOAD_ERR_PARTIAL:
183 $this->
setAlert($this->
lng->txt(
"form_msg_file_partially_uploaded"));
187 case UPLOAD_ERR_NO_FILE:
190 } elseif (isset($F[self::FILE_DATA_INDEX_DODGING_FILE][
$index]) && $F[self::FILE_DATA_INDEX_DODGING_FILE][$index] !==
'') {
193 $this->
setAlert($this->
lng->txt(
"form_msg_file_no_upload"));
197 case UPLOAD_ERR_NO_TMP_DIR:
198 $this->
setAlert($this->
lng->txt(
"form_msg_file_missing_tmp_dir"));
202 case UPLOAD_ERR_CANT_WRITE:
203 $this->
setAlert($this->
lng->txt(
"form_msg_file_cannot_write_to_disk"));
207 case UPLOAD_ERR_EXTENSION:
208 $this->
setAlert($this->
lng->txt(
"form_msg_file_upload_stopped_ext"));
216 if (is_array($F[
'tmp_name'])) {
217 foreach ($F[
'tmp_name'] as
$index => $tmpname) {
221 $tmpname = array_shift($tmpname);
224 $suffix = $filename_arr[
"extension"] ??
'';
225 $mimetype = $F[
'type'][
$index];
226 $size_bytes = $F[
'size'][
$index];
228 if (strlen($tmpname) && is_array($this->
getSuffixes())) {
230 $this->
setAlert($this->
lng->txt(
"form_msg_file_wrong_file_type"));
237 foreach ($F[
'tmp_name'] as
$index => $tmpname) {
241 $tmpname = array_shift($tmpname);
244 $suffix = $filename_arr[
"extension"] ??
'';
245 $mimetype = $F[
'type'][
$index];
246 $size_bytes = $F[
'size'][
$index];
248 if (strlen($tmpname)) {
250 if ($vir[0] ==
false) {
251 $this->
setAlert($this->
lng->txt(
"form_msg_file_virus_found") .
"<br />" . $vir[1]);
260 public function render(
string $a_mode =
""): string
280 $tpl->
setVariable(
"TXT_DELETE_EXISTING", $lng->
txt(
"delete_existing_file"));
323 $suff_str = $delim =
"";
325 $suff_str .= $delim .
"." .
$suffix;
329 $tpl->
setVariable(
"TXT_ALLOWED_SUFFIXES", $lng->
txt(
"file_allowed_suffixes") .
" " . $suff_str);
337 $tpl->
setVariable(
"DELETE_IMAGE_HEADER", $lng->
txt(
'delete_image_header'));
338 $tpl->
setVariable(
"DELETE_IMAGE_QUESTION", $lng->
txt(
'delete_image_question'));
343 $iterator_subfield_name = self::ITERATOR_SUBFIELD_NAME;
344 $image_upload_subfield_name = self::IMAGE_UPLOAD_SUBFIELD_NAME;
347 $.extend({}, ilWizardInput, ilIdentifiedWizardInputExtend).init(
349 'fieldContainerSelector':
'.ilWzdContainerImage',
350 'reindexingRequiredElementsSelectors': [
351 'input:hidden[name*="[{$iterator_subfield_name}]"]',
352 'input:file[id*="__{$image_upload_subfield_name}__"]',
353 'input:submit[name*="[{$this->getImageUploadCommand()}]"]',
354 'input:submit[name*="[{$this->getImageRemovalCommand()}]"]',
357 'handleRowCleanUpCallback':
function(rowElem) {
358 $(rowElem).find(
'div.imagepresentation').remove();
359 $(rowElem).find(
'input[type=text]').val(
'');
365 $this->tpl->addJavascript(
"./Services/Form/js/ServiceFormWizardInput.js");
366 $this->tpl->addJavascript(
"./Services/Form/js/ServiceFormIdentifiedWizardInputExtend.js");
367 $this->tpl->addOnLoadCode($init_code);
379 && array_key_exists(
'src',
$value)
400 return isset(
$value[
'title']) && strlen(
$value[
'title']);
414 return new ilTemplate(self::RENDERING_TEMPLATE,
true,
true,
"Modules/TestQuestionPool");
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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)
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setVariable(string $variable, $value='')
Sets the given variable to the given value.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
__construct(Container $dic, ilPlugin $plugin)
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.