ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
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.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(protected InternalDomainService $domain, protected InternalGUIService $gui)