ILIAS  release_8 Revision v8.25-1-g13de6a5eca6
FileUpload.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
22
26interface FileUpload
27{
28 public function getUploadHandler(): UploadHandler;
29
30 public function withMaxFileSize(int $size_in_bytes): FileUpload;
31
32 public function getMaxFileSize(): int;
33
34 public function withMaxFiles(int $max_file_amount): FileUpload;
35
36 public function getMaxFiles(): int;
37
41 public function withAcceptedMimeTypes(array $mime_types): FileUpload;
42
46 public function getAcceptedMimeTypes(): array;
47}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Checkbox.php:21