ILIAS  trunk Revision v11.0_alpha-2662-g519ff7d528f
class.GUIService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
27 {
28  protected InternalGUIService $gui;
30 
31  public function __construct(
32  InternalDomainService $domain,
33  InternalGUIService $gui
34  ) {
35  $this->domain = $domain;
36  $this->gui = $gui;
37  }
38 
39  public function toolbarNavigationRenderer(
41  return new ToolbarNavigationRenderer(
42  $this->domain,
43  $this->gui
44  );
45  }
46 }
__construct(InternalDomainService $domain, InternalGUIService $gui)