ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjectCustomIconConfiguration.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 {
26  public function getSupportedFileExtensions(): array
27  {
28  return ['svg'];
29  }
30 
31  public function getTargetFileExtension(): string
32  {
33  return 'svg';
34  }
35 
36  public function getBaseDirectory(): string
37  {
38  return 'custom_icons';
39  }
40 
41  public function getSubDirectoryPrefix(): string
42  {
43  return 'obj_';
44  }
45 
46  public function getUploadPostProcessors(): array
47  {
48  return [];
49  }
50 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getUploadPostProcessors()
A collection of post processors which are invoked if a new icon has been uploaded.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...