19 declare(strict_types=1);
46 string $a_postvar =
"" 50 $this->
lng = $DIC->language();
51 $lng = $DIC->language();
52 $this->upload_service = $DIC->upload();
53 $this->upload_limit = $DIC[
'ui.upload_limit_resolver'];
63 if (!is_array($value)) {
73 public function setValue(
string $a_value): void
75 $this->value = $a_value;
83 public function setSize(
int $a_size): void
85 $this->size = $a_size;
96 $this->filename = $a_val;
106 $this->suffixes = $a_suffixes;
116 $this->forbidden_suffixes = $a_suffixes;
127 $this->pending = $a_val;
138 $this->filename_selection =
true;
139 $this->filename_post = $a_post_var;
154 $this->allow_deletion = $a_val;
164 if (!$this->upload_service->hasBeenProcessed()) {
166 $this->upload_service->process();
189 $utf_normal = $this->
refinery->string()->utfnormal()->formC();
190 $_FILES[$this->
getPostVar()][
"name"] = $utf_normal->transform(($_FILES[$this->
getPostVar()][
"name"]));
195 $filename = $_FILES[$this->
getPostVar()][
"name"];
196 $filename_arr = pathinfo($_FILES[$this->
getPostVar()][
"name"]);
197 $suffix = $filename_arr[
"extension"] ??
'';
198 $temp_name = $_FILES[$this->
getPostVar()][
"tmp_name"];
199 $error = $_FILES[$this->
getPostVar()][
"error"];
204 case UPLOAD_ERR_FORM_SIZE:
205 case UPLOAD_ERR_INI_SIZE:
209 case UPLOAD_ERR_PARTIAL:
213 case UPLOAD_ERR_NO_FILE:
222 case UPLOAD_ERR_NO_TMP_DIR:
226 case UPLOAD_ERR_CANT_WRITE:
230 case UPLOAD_ERR_EXTENSION:
237 if ($_FILES[$this->
getPostVar()][
"tmp_name"] !=
"") {
238 if (is_array($this->forbidden_suffixes) && in_array(strtolower($suffix), $this->forbidden_suffixes)) {
239 $this->
setAlert(
$lng->
txt(
"form_msg_file_type_is_not_allowed") .
" (" . $suffix .
")");
243 if (!in_array(strtolower($suffix), $this->
getSuffixes())) {
251 if ($_FILES[$this->
getPostVar()][
"tmp_name"] !=
"") {
253 if ($vir[0] ==
false) {
254 $this->
setAlert(
$lng->
txt(
"form_msg_file_virus_found") .
"<br />" . $vir[1]);
259 $file_name = $this->
str(
'file_name');
260 if ($file_name ===
"") {
261 $file_name = $_FILES[$this->
getPostVar()][
"name"];
273 public function render(
string $a_mode =
""): string
277 $quota_exceeded = $quota_legend =
false;
279 $f_tpl =
new ilTemplate(
"tpl.prop_file.html",
true,
true,
"components/ILIAS/Form");
284 $f_tpl->setCurrentBlock(
'filename');
286 $f_tpl->setVariable(
'VAL_FILENAME', $this->
getFilename());
287 $f_tpl->setVariable(
'FILENAME_ID', $this->
getFieldId());
288 $f_tpl->setVariable(
'TXT_FILENAME_HINT',
$lng->
txt(
'if_no_title_then_filename'));
289 $f_tpl->parseCurrentBlock();
291 if (trim($this->
getValue()) !=
"") {
293 $f_tpl->setCurrentBlock(
"delete_bl");
294 $f_tpl->setVariable(
"POST_VAR_D", $this->
getPostVar());
296 "TXT_DELETE_EXISTING",
297 $lng->
txt(
"delete_existing_file")
299 $f_tpl->parseCurrentBlock();
302 $f_tpl->setCurrentBlock(
'prop_file_propval');
303 $f_tpl->setVariable(
'FILE_VAL', $this->
getValue());
304 $f_tpl->parseCurrentBlock();
308 if ($a_mode !=
"toolbar") {
309 if (!$quota_exceeded) {
312 $f_tpl->setCurrentBlock(
"max_size");
313 $f_tpl->setVariable(
"TXT_MAX_SIZE",
$lng->
txt(
"file_notice") .
" " .
315 $f_tpl->parseCurrentBlock();
318 $f_tpl->setVariable(
"TXT_MAX_SIZE",
true);
319 $f_tpl->parseCurrentBlock();
322 $f_tpl->setCurrentBlock(
"max_size");
323 $f_tpl->setVariable(
"TXT_MAX_SIZE", $quota_exceeded);
324 $f_tpl->parseCurrentBlock();
326 } elseif ($quota_exceeded) {
327 return $quota_exceeded;
332 $f_tpl->setCurrentBlock(
"pending");
333 $f_tpl->setVariable(
"TXT_PENDING",
$lng->
txt(
"file_upload_pending") .
334 ": " . htmlentities($pending));
335 $f_tpl->parseCurrentBlock();
341 " disabled=\"disabled\"" 345 $f_tpl->setVariable(
'MAX_SIZE_WARNING', $this->
lng->txt(
'form_msg_file_size_exceeds'));
346 $f_tpl->setVariable(
'MAX_SIZE', $this->upload_limit->getPhpUploadLimitInBytes());
347 $f_tpl->setVariable(
"POST_VAR", $this->
getPostVar());
348 $f_tpl->setVariable(
"ID", $this->
getFieldId());
349 $f_tpl->setVariable(
"SIZE", $this->
getSize());
350 $f_tpl->setVariable(
"LABEL_SELECTED_FILES_INPUT", $this->
lng->txt(
'selected_files'));
354 $f_tpl->setVariable(
"TXT_BROWSE",
$lng->
txt(
"select_file"));
357 return $f_tpl->get();
372 string $a_block =
"allowed_suffixes" 377 $suff_str = $delim =
"";
379 $suff_str .= $delim .
"." . $suffix;
384 "TXT_ALLOWED_SUFFIXES",
385 $lng->
txt(
"file_allowed_suffixes") .
" " . $suff_str
394 return sprintf(
"%.1f MB", $this->upload_limit->getPhpUploadLimitInBytes() / 1024 / 1024);
402 return (
int) ini_get(
"max_file_uploads");
407 if ($this->
int($this->
getPostVar() .
"_delete")) {
415 $html = $this->
render(
"toolbar");
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_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...
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
static virusHandling(string $a_file, string $a_orig_name='', bool $a_clean=true)
Class IllegalStateException.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setVariable($variable, $value='')
Sets a variable value.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
__construct(Container $dic, ilPlugin $plugin)