ILIAS
trunk Revision v11.0_alpha-1761-g6dbbfa7b760
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.InternalDomainService.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Help
;
22
23
use
ILIAS\DI\Container
;
24
use
ILIAS\Repository\GlobalDICDomainServices
;
25
use
ILIAS\Help\Map\MapManager
;
26
use
ILIAS\Help\Tooltips\TooltipsManager
;
27
use
ILIAS\Help\Module\ModuleManager
;
28
use
ILIAS\Help\Presentation\PresentationManager
;
29
30
class
InternalDomainService
31
{
32
use
GlobalDICDomainServices
;
33
34
protected
array
$container
= [];
35
36
protected
InternalRepoService
$repo_service
;
37
protected
InternalDataService
$data_service
;
38
39
public
function
__construct
(
40
Container
$DIC
,
41
InternalRepoService
$repo_service,
42
InternalDataService
$data_service
43
) {
44
$this->repo_service =
$repo_service
;
45
$this->data_service =
$data_service
;
46
$this->
initDomainServices
($DIC);
47
}
48
49
public
function
map
(): MapManager
50
{
51
return
$this->container[
"map"
] ??
52
$this->container[
"map"
] =
new
MapManager(
53
$this->repo_service,
54
$this
55
);
56
}
57
58
public
function
tooltips
(): TooltipsManager
59
{
60
return
$this->container[
"tooltips"
] ??
61
$this->container[
"tooltips"
] =
new
TooltipsManager(
62
$this->repo_service,
63
$this
64
);
65
}
66
67
public
function
module
(): 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
}
77
78
public
function
presentation
(): PresentationManager
79
{
80
return
$this->container[
"presentation"
] ??
81
$this->container[
"presentation"
] =
new
PresentationManager(
82
$this
83
);
84
}
85
86
}
ILIAS\Help\InternalDomainService\map
map()
Definition:
class.InternalDomainService.php:49
ILIAS\Help\InternalDomainService\tooltips
tooltips()
Definition:
class.InternalDomainService.php:58
TooltipsManager
ILIAS\Help\InternalDomainService\$repo_service
InternalRepoService $repo_service
Definition:
class.InternalDomainService.php:36
ILIAS\Repository\initDomainServices
initDomainServices(\ILIAS\DI\Container $DIC)
Definition:
trait.GlobalDICDomainServices.php:41
MapManager
Container
ILIAS\Help
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
PresentationManager
$DIC
global $DIC
Definition:
shib_login.php:22
ILIAS\Help\InternalDomainService\$data_service
InternalDataService $data_service
Definition:
class.InternalDomainService.php:37
ILIAS\Help\InternalDomainService
Definition:
class.InternalDomainService.php:30
ILIAS\Help\InternalDomainService\__construct
__construct(Container $DIC, InternalRepoService $repo_service, InternalDataService $data_service)
Definition:
class.InternalDomainService.php:39
ILIAS\Help\InternalDomainService\$container
array $container
Definition:
class.InternalDomainService.php:34
ILIAS\Repository\GlobalDICDomainServices
trait GlobalDICDomainServices
Definition:
trait.GlobalDICDomainServices.php:38
ILIAS\Help\InternalDomainService\module
module()
Definition:
class.InternalDomainService.php:67
ILIAS\Help\InternalDataService
Definition:
class.InternalDataService.php:23
ILIAS\Help\InternalDomainService\presentation
presentation()
Definition:
class.InternalDomainService.php:78
ILIAS\Container
Definition:
Container.php:23
GlobalDICDomainServices
ILIAS\Help\InternalRepoService
Definition:
class.InternalRepoService.php:27
ModuleManager
components
ILIAS
Help
Service
class.InternalDomainService.php
Generated on Fri Apr 11 2025 23:02:25 for ILIAS by
1.8.13 (using
Doxyfile
)