ILIAS  trunk Revision v11.0_alpha-2662-g519ff7d528f
ExternalDomainService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Export\HTML;
22 
29 
31 {
32  protected static array $instance = [];
33 
34  public function __construct(
35  protected InternalDomainService $internal_domain
36  ) {
37  }
38 
39  public function collector(
40  int $obj_id,
41  string $type = ""
42  ): ExportCollector {
43  return $this->internal_domain->html()->collector(
44  $obj_id,
45  $type
46  );
47  }
48 
49  public function fileManager(
51  return $this->internal_domain->html()->fileManager();
52  }
53 
54 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(protected InternalDomainService $internal_domain)