ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ilStudyProgrammeTypeStakeholder.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 public function getId(): string
29 {
30 return self::ID;
31 }
32
33 public function getOwnerOfNewResources(): int
34 {
36 }
37
38 public function getPreprocessors(): array
39 {
40 $allowed = ['svg'];
41 $processor = new WhitelistExtensionPreProcessor($allowed);
42
43 return [
44 $processor
45 ];
46 }
47}