ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
ILIAS\Container\InternalGUIService Class Reference
+ Collaboration diagram for ILIAS\Container\InternalGUIService:

Public Member Functions

 __construct (DI\Container $DIC, InternalDataService $data_service, InternalDomainService $domain_service)
 
 standardRequest ()
 
 content ()
 
 classification ()
 
 filter ()
 

Protected Attributes

InternalDataService $data_service
 
InternalDomainService $domain_service
 

Static Protected Attributes

static array $instance = []
 

Detailed Description

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

Definition at line 29 of file class.InternalGUIService.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\Container\InternalGUIService::__construct ( DI\Container  $DIC,
InternalDataService  $data_service,
InternalDomainService  $domain_service 
)

Definition at line 37 of file class.InternalGUIService.php.

References ILIAS\Container\InternalGUIService\$data_service, ILIAS\Container\InternalGUIService\$domain_service, and ILIAS\Repository\initGUIServices().

41  {
42  $this->data_service = $data_service;
43  $this->domain_service = $domain_service;
44  $this->initGUIServices($DIC);
45  }
initGUIServices(\ILIAS\DI\Container $DIC)
global $DIC
Definition: shib_login.php:26
+ Here is the call graph for this function:

Member Function Documentation

◆ classification()

ILIAS\Container\InternalGUIService::classification ( )

Definition at line 64 of file class.InternalGUIService.php.

64  : Classification\GUIService
65  {
66  return self::$instance["classification"] ??= new Classification\GUIService(
67  $this->domain_service,
68  $this
69  );
70  }

◆ content()

ILIAS\Container\InternalGUIService::content ( )

Definition at line 55 of file class.InternalGUIService.php.

55  : Content\GUIService
56  {
57  return self::$instance["content"] ??= new Content\GUIService(
58  $this->data_service,
59  $this->domain_service,
60  $this
61  );
62  }

◆ filter()

ILIAS\Container\InternalGUIService::filter ( )

Definition at line 72 of file class.InternalGUIService.php.

72  : Filter\GUIService
73  {
74  return self::$instance["filter"] ??= new Filter\GUIService(
75  $this->data_service,
76  $this->domain_service,
77  $this
78  );
79  }

◆ standardRequest()

ILIAS\Container\InternalGUIService::standardRequest ( )

Definition at line 47 of file class.InternalGUIService.php.

References ILIAS\FileDelivery\http().

47  : StandardGUIRequest
48  {
49  return new StandardGUIRequest(
50  $this->http(),
51  $this->domain_service->refinery()
52  );
53  }
static http()
Fetches the global http state from ILIAS.
+ Here is the call graph for this function:

Field Documentation

◆ $data_service

InternalDataService ILIAS\Container\InternalGUIService::$data_service
protected

◆ $domain_service

InternalDomainService ILIAS\Container\InternalGUIService::$domain_service
protected

◆ $instance

array ILIAS\Container\InternalGUIService::$instance = []
staticprotected

Definition at line 35 of file class.InternalGUIService.php.


The documentation for this class was generated from the following file: