ILIAS  trunk Revision v11.0_alpha-1744-gb0451eebef4
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.GUIService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 use ilObjStyleSheet;
28 
33 {
34  public function __construct(
35  protected InternalDomainService $domain,
36  protected InternalGUIService $gui
37  ) {
38  }
39 
40  public function importModal(): ImportModal
41  {
42  return new ImportModal(
43  $this->domain,
44  $this->gui
45  );
46  }
47 
48 }
Content style internal ui factory.
Facade for consumer gui interface.
__construct(protected InternalDomainService $domain, protected InternalGUIService $gui)