ILIAS  trunk Revision v11.0_alpha-2645-g16283d3b3f8
Configuration.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 {
28  public function getSupportedFileExtensions(): array
29  {
30  return ['svg'];
31  }
32 
33  public function getTargetFileExtension(): string
34  {
35  return 'svg';
36  }
37 
38  public function getBaseDirectory(): string
39  {
40  return 'custom_icons';
41  }
42 
43  public function getSubDirectoryPrefix(): string
44  {
45  return 'obj_';
46  }
47 
48  public function getUploadPostProcessors(): array
49  {
50  return [];
51  }
52 }