ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ilOrgUnitTypeStakeholder.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
23
25{
26 private const ID = 'PRGType';
27
28
29 public function getId(): string
30 {
31 return self::ID;
32 }
33
34 public function getOwnerOfNewResources(): int
35 {
37 }
38
39 public function getPreprocessors(): array
40 {
41 $allowed = ['svg'];
42 $processor = new WhitelistExtensionPreProcessor($allowed);
43
44 return [
45 $processor
46 ];
47 }
48}