19 declare(strict_types=1);
39 string $a_postvar =
"" 43 $this->
lng = $DIC->language();
44 $this->
lng->loadLanguageModule(
"form");
45 $this->tpl = $DIC[
"tpl"];
46 $this->ui_factory = $DIC->ui()->factory();
47 $this->ui_renderer = $DIC->ui()->renderer();
53 $this->imagepath_web = $a_path;
63 $this->filenames = $a_filenames;
73 $this->allowMove = $a_allow_move;
95 if (is_array($pictures)) {
96 foreach ($pictures[
'name'] as $index => $name) {
98 $name = rtrim($name,
'/');
101 $filename_arr = pathinfo($name);
102 $suffix = $filename_arr[
"extension"] ??
"";
103 $temp_name = $pictures[
"tmp_name"][$index];
104 $error = $pictures[
"error"][$index];
106 $_FILES[$this->
getPostVar()][
"name"][$index] = Util::sanitizeFileName($_FILES[$this->
getPostVar()][
"name"][$index]);
112 case UPLOAD_ERR_FORM_SIZE:
113 case UPLOAD_ERR_INI_SIZE:
115 $uploadcheck =
false;
118 case UPLOAD_ERR_PARTIAL:
120 $uploadcheck =
false;
123 case UPLOAD_ERR_NO_FILE:
128 $uploadcheck =
false;
133 case UPLOAD_ERR_NO_TMP_DIR:
135 $uploadcheck =
false;
138 case UPLOAD_ERR_CANT_WRITE:
140 $uploadcheck =
false;
143 case UPLOAD_ERR_EXTENSION:
145 $uploadcheck =
false;
151 if ($pictures[
"tmp_name"][$index] !=
"" && is_array($this->
getSuffixes()) && count($this->
getSuffixes()) > 0) {
152 if (!in_array(strtolower($suffix), $this->
getSuffixes())) {
154 $uploadcheck =
false;
159 if ($pictures[
"tmp_name"][$index] !=
"") {
161 if ($vir[0] ==
false) {
162 $this->
setAlert(
$lng->
txt(
"form_msg_file_virus_found") .
"<br />" . $vir[1]);
163 $uploadcheck =
false;
180 $tpl =
new ilTemplate(
"tpl.prop_filewizardinput.html",
true,
true,
"components/ILIAS/Form");
183 foreach ($this->filenames as
$value) {
184 if (strlen($value)) {
204 $this->ui_renderer->render(
205 $this->ui_factory->symbol()->glyph()->up()
210 $this->ui_renderer->render(
211 $this->ui_factory->symbol()->glyph()->down()
229 " disabled=\"disabled\"" 235 $this->ui_renderer->render(
236 $this->ui_factory->symbol()->glyph()->add()
241 $this->ui_renderer->render(
242 $this->ui_factory->symbol()->glyph()->remove()
258 $main_tpl->addJavascript(
"assets/js/ServiceFormWizardInput.js");
259 $main_tpl->addJavascript(
"assets/js/filewizard.js");
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.
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...
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
static virusHandling(string $a_file, string $a_orig_name='', bool $a_clean=true)
setVariable(string $variable, $value='')
Sets the given variable to the given value.
setVariable($variable, $value='')
Sets a variable value.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
__construct(Container $dic, ilPlugin $plugin)