ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
ILIAS\Help\InternalDomainService Class Reference
+ Collaboration diagram for ILIAS\Help\InternalDomainService:

Public Member Functions

 __construct (Container $DIC, InternalRepoService $repo_service, InternalDataService $data_service)
 
 guidedTour ()
 
 map ()
 
 tooltips ()
 
 module ()
 
 presentation ()
 

Protected Attributes

array $container = []
 
InternalRepoService $repo_service
 
InternalDataService $data_service
 

Static Protected Attributes

static array $instance = []
 

Detailed Description

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

Constructor & Destructor Documentation

◆ __construct()

ILIAS\Help\InternalDomainService::__construct ( Container  $DIC,
InternalRepoService  $repo_service,
InternalDataService  $data_service 
)

Definition at line 40 of file class.InternalDomainService.php.

44 {
45 $this->repo_service = $repo_service;
46 $this->data_service = $data_service;
47 $this->initDomainServices($DIC);
48 }
initDomainServices(\ILIAS\DI\Container $DIC)

References ILIAS\Help\InternalDomainService\$data_service, ILIAS\Help\InternalDomainService\$repo_service, and ILIAS\Repository\initDomainServices().

+ Here is the call graph for this function:

Member Function Documentation

◆ guidedTour()

ILIAS\Help\InternalDomainService::guidedTour ( )

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

51 {
52 return self::$instance["guided"] ??= new GuidedTour\InternalDomainService(
53 $this->DIC,
54 $this->repo_service->guidedTour(),
55 $this->data_service->guidedTour()
56 );
57 }

Referenced by ILIAS\Help\Tooltips\TooltipsManager\__construct().

+ Here is the caller graph for this function:

◆ map()

ILIAS\Help\InternalDomainService::map ( )

Definition at line 60 of file class.InternalDomainService.php.

60 : MapManager
61 {
62 return $this->container["map"] ??
63 $this->container["map"] = new MapManager(
64 $this->repo_service,
65 $this
66 );
67 }

Referenced by ILIAS\Help\Module\ModuleManager\__construct().

+ Here is the caller graph for this function:

◆ module()

ILIAS\Help\InternalDomainService::module ( )

Definition at line 78 of file class.InternalDomainService.php.

78 : ModuleManager
79 {
80 if (!isset($this->container["module"])) {
81 $this->container["module"] = new ModuleManager(
82 $this->repo_service->module(),
83 $this
84 );
85 }
86 return $this->container["module"];
87 }

Referenced by ILIAS\Help\Presentation\PresentationManager\__construct().

+ Here is the caller graph for this function:

◆ presentation()

ILIAS\Help\InternalDomainService::presentation ( )

Definition at line 89 of file class.InternalDomainService.php.

89 : PresentationManager
90 {
91 return $this->container["presentation"] ??
92 $this->container["presentation"] = new PresentationManager(
93 $this
94 );
95 }

◆ tooltips()

ILIAS\Help\InternalDomainService::tooltips ( )

Definition at line 69 of file class.InternalDomainService.php.

69 : TooltipsManager
70 {
71 return $this->container["tooltips"] ??
72 $this->container["tooltips"] = new TooltipsManager(
73 $this->repo_service,
74 $this
75 );
76 }

Referenced by ILIAS\Help\Module\ModuleManager\__construct().

+ Here is the caller graph for this function:

Field Documentation

◆ $container

array ILIAS\Help\InternalDomainService::$container = []
protected

Definition at line 34 of file class.InternalDomainService.php.

◆ $data_service

InternalDataService ILIAS\Help\InternalDomainService::$data_service
protected

◆ $instance

array ILIAS\Help\InternalDomainService::$instance = []
staticprotected

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

◆ $repo_service

InternalRepoService ILIAS\Help\InternalDomainService::$repo_service
protected

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