ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilOrgUnitTypeStakeholder.php
Go to the documentation of this file.
1 <?php
2 
19 declare(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  {
36  return $this->default_owner;
37  }
38 
39  public function getPreprocessors(): array
40  {
41  $allowed = ['svg'];
42  $processor = new WhitelistExtensionPreProcessor($allowed);
43 
44  return [
45  $processor
46  ];
47  }
48 }