ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
UploadHandler.php
Go to the documentation of this file.
1 <?php declare(strict_types=1);
2 
4 
6 
12 interface UploadHandler
13 {
14  public const DEFAULT_FILE_ID_PARAMETER = 'file_id';
15 
16 
20  public function getFileIdentifierParameterName() : string;
21 
22 
27  public function getUploadURL() : string;
28 
29 
35  public function getFileRemovalURL() : string;
36 
37 
43  public function getExistingFileInfoURL() : string;
44 
45 
51  public function getInfoForExistingFiles(array $file_ids) : array;
52 }