ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.InternalGUIService.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\Portfolio;
22
25
27{
28 use GlobalDICGUIServices;
29
30 protected static array $instance = [];
31
32 public function __construct(
36 ) {
37 $this->initGUIServices($DIC);
38 }
39
41 {
42 return new StandardGUIRequest(
43 $this->http(),
44 $this->domain_service->refinery()
45 );
46 }
47
48 public function settings(
49 ): Settings\GUIService {
50 return self::$instance["settings"] ??= new Settings\GUIService(
51 $this->data_service,
52 $this->domain_service,
53 $this
54 );
55 }
56
57}
Repository internal data service.
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:36
__construct(Container $DIC, protected InternalDataService $data_service, protected InternalDomainService $domain_service)
return['delivery_method'=> 'php',]
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static http()
Fetches the global http state from ILIAS.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
initGUIServices(\ILIAS\DI\Container $DIC)
global $DIC
Definition: shib_login.php:26