ILIAS  trunk Revision v11.0_alpha-1761-g6dbbfa7b760
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
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.

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

43  {
44  $this->repo_service = $repo_service;
45  $this->data_service = $data_service;
46  $this->initDomainServices($DIC);
47  }
initDomainServices(\ILIAS\DI\Container $DIC)
global $DIC
Definition: shib_login.php:22
+ 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.

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

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

◆ 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.

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

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