ILIAS  trunk Revision v11.0_alpha-1761-g6dbbfa7b760
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilStudyProgrammeTypeStakeholder.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  public function getId(): string
29  {
30  return self::ID;
31  }
32 
33  public function getOwnerOfNewResources(): int
34  {
35  return $this->default_owner;
36  }
37 
38  public function getPreprocessors(): array
39  {
40  $allowed = ['svg'];
41  $processor = new WhitelistExtensionPreProcessor($allowed);
42 
43  return [
44  $processor
45  ];
46  }
47 }