ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ILIAS\Glossary\InternalGUIService Class Reference
+ Collaboration diagram for ILIAS\Glossary\InternalGUIService:

Public Member Functions

 __construct (Container $DIC, protected InternalDataService $data_service, protected InternalDomainService $domain_service)
 
 editing ()
 
 presentation ()
 
 settings ()
 

Static Protected Attributes

static array $instance = []
 

Detailed Description

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

Constructor & Destructor Documentation

◆ __construct()

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

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

37 {
38 $this->initGUIServices($DIC);
39 }
initGUIServices(\ILIAS\DI\Container $DIC)

References ILIAS\Repository\initGUIServices().

+ Here is the call graph for this function:

Member Function Documentation

◆ editing()

ILIAS\Glossary\InternalGUIService::editing ( )

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

41 : Editing\GUIService
42 {
43 return self::$instance["editing"] ??= new Editing\GUIService(
44 $this->domain_service,
45 $this
46 );
47 }

◆ presentation()

ILIAS\Glossary\InternalGUIService::presentation ( )

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

49 : Presentation\GUIService
50 {
51 return self::$instance["presentation"] ??= new Presentation\GUIService(
52 $this->domain_service,
53 $this
54 );
55 }

◆ settings()

ILIAS\Glossary\InternalGUIService::settings ( )

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

57 : Settings\GUIService
58 {
59 return self::$instance["settings"] ??= new Settings\GUIService(
60 $this->data_service,
61 $this->domain_service,
62 $this
63 );
64 }

Field Documentation

◆ $instance

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

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


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