ILIAS  trunk Revision v11.0_alpha-2662-g519ff7d528f
ILIAS\InfoScreen\InternalService Class Reference
+ Collaboration diagram for ILIAS\InfoScreen\InternalService:

Public Member Functions

 __construct (Container $DIC)
 
 data ()
 
 domain ()
 
 gui ()
 

Protected Attributes

Container $DIC
 
array $instance = []
 

Detailed Description

Definition at line 25 of file class.InternalService.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\InfoScreen\InternalService::__construct ( Container  $DIC)

Definition at line 30 of file class.InternalService.php.

References ILIAS\InfoScreen\InternalService\$DIC.

31  {
32  $this->DIC = $DIC;
33  }

Member Function Documentation

◆ data()

ILIAS\InfoScreen\InternalService::data ( )

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

Referenced by ILIAS\InfoScreen\InternalService\domain(), and ILIAS\InfoScreen\InternalService\gui().

35  : InternalDataService
36  {
37  return $this->instance["data"] ??
38  $this->instance["data"] = new InternalDataService();
39  }
+ Here is the caller graph for this function:

◆ domain()

ILIAS\InfoScreen\InternalService::domain ( )

Definition at line 41 of file class.InternalService.php.

References ILIAS\InfoScreen\InternalService\data().

Referenced by ILIAS\InfoScreen\InternalService\gui().

41  : InternalDomainService
42  {
43  return $this->instance["domain"] ??
44  $this->instance["domain"] = new InternalDomainService(
45  $this->DIC,
46  $this->data()
47  );
48  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ gui()

ILIAS\InfoScreen\InternalService::gui ( )

Definition at line 50 of file class.InternalService.php.

References ILIAS\InfoScreen\InternalService\data(), and ILIAS\InfoScreen\InternalService\domain().

50  : InternalGUIService
51  {
52  return $this->instance["gui"] ??
53  $this->instance["gui"] = new InternalGUIService(
54  $this->DIC,
55  $this->data(),
56  $this->domain()
57  );
58  }
+ Here is the call graph for this function:

Field Documentation

◆ $DIC

Container ILIAS\InfoScreen\InternalService::$DIC
protected

◆ $instance

array ILIAS\InfoScreen\InternalService::$instance = []
protected

Definition at line 28 of file class.InternalService.php.


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