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

Public Member Functions

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

Protected Attributes

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

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 39 of file class.InternalDomainService.php.

43 {
44 $this->repo_service = $repo_service;
45 $this->data_service = $data_service;
46 $this->initDomainServices($DIC);
47 }
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

◆ map()

ILIAS\Help\InternalDomainService::map ( )

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

49 : MapManager
50 {
51 return $this->container["map"] ??
52 $this->container["map"] = new MapManager(
53 $this->repo_service,
54 $this
55 );
56 }

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

+ Here is the caller graph for this function:

◆ module()

ILIAS\Help\InternalDomainService::module ( )

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

67 : ModuleManager
68 {
69 if (!isset($this->container["module"])) {
70 $this->container["module"] = new ModuleManager(
71 $this->repo_service->module(),
72 $this
73 );
74 }
75 return $this->container["module"];
76 }

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

+ Here is the caller graph for this function:

◆ presentation()

ILIAS\Help\InternalDomainService::presentation ( )

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

78 : PresentationManager
79 {
80 return $this->container["presentation"] ??
81 $this->container["presentation"] = new PresentationManager(
82 $this
83 );
84 }

◆ tooltips()

ILIAS\Help\InternalDomainService::tooltips ( )

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

58 : TooltipsManager
59 {
60 return $this->container["tooltips"] ??
61 $this->container["tooltips"] = new TooltipsManager(
62 $this->repo_service,
63 $this
64 );
65 }

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

◆ $repo_service

InternalRepoService ILIAS\Help\InternalDomainService::$repo_service
protected

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