ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ExternalDomainService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Export\HTML;
22 
28 
30 {
31  protected static array $instance = [];
32 
33  public function __construct(
34  protected InternalDomainService $internal_domain
35  ) {
36  }
37 
38  public function collector(
39  int $obj_id,
40  string $type = ""
41  ): ExportCollector {
42  return $this->internal_domain->html()->collector(
43  $obj_id,
44  $type
45  );
46  }
47 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(protected InternalDomainService $internal_domain)