ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.InternalGUIService.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
18 namespace ILIAS\RootFolder;
19 
20 use ILIAS\DI;
22 
27 {
29 
32 
33  public function __construct(
35  InternalDataService $data_service,
36  InternalDomainService $domain_service
37  ) {
38  $this->data_service = $data_service;
39  $this->domain_service = $domain_service;
40  $this->initGUIServices($DIC);
41  }
42 
44  {
45  return new StandardGUIRequest(
46  $this->http(),
47  $this->domain_service->refinery()
48  );
49  }
50 }
initGUIServices(\ILIAS\DI\Container $DIC)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Repository internal data service.
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:31
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Container.php:19
global $DIC
Definition: feed.php:28
static http()
Fetches the global http state from ILIAS.
Class HTTPServicesTest.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(DI\Container $DIC, InternalDataService $data_service, InternalDomainService $domain_service)