ILIAS
trunk Revision v11.0_alpha-1846-g895b5f47236
◀ 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.InternalService.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\InfoScreen
;
22
23
use
ILIAS\DI\Container
;
24
25
class
InternalService
26
{
27
protected
Container
$DIC
;
28
protected
array
$instance
= [];
29
30
public
function
__construct
(
Container
$DIC)
31
{
32
$this->
DIC
=
$DIC
;
33
}
34
35
public
function
data
():
InternalDataService
36
{
37
return
$this->instance[
"data"
] ??
38
$this->instance[
"data"
] =
new
InternalDataService
();
39
}
40
41
public
function
domain
():
InternalDomainService
42
{
43
return
$this->instance[
"domain"
] ??
44
$this->instance[
"domain"
] =
new
InternalDomainService
(
45
$this->
DIC
,
46
$this->
data
()
47
);
48
}
49
50
public
function
gui
():
InternalGUIService
51
{
52
return
$this->instance[
"gui"
] ??
53
$this->instance[
"gui"
] =
new
InternalGUIService
(
54
$this->
DIC
,
55
$this->
data
(),
56
$this->
domain
()
57
);
58
}
59
}
ILIAS\InfoScreen\InternalService\gui
gui()
Definition:
class.InternalService.php:50
ILIAS\InfoScreen\InternalService\$instance
array $instance
Definition:
class.InternalService.php:28
ILIAS\InfoScreen\InternalService\__construct
__construct(Container $DIC)
Definition:
class.InternalService.php:30
Container
ILIAS\InfoScreen\InternalService\domain
domain()
Definition:
class.InternalService.php:41
ILIAS\InfoScreen\InternalGUIService
Definition:
class.InternalGUIService.php:27
ILIAS\InfoScreen\InternalDomainService
Definition:
class.InternalDomainService.php:26
ILIAS\InfoScreen\InternalDataService
Definition:
class.InternalDataService.php:23
DIC
ILIAS\Container
Definition:
Container.php:23
ILIAS\InfoScreen\InternalService
Definition:
class.InternalService.php:25
ILIAS\InfoScreen
Definition:
class.StandardGUIRequest.php:21
ILIAS\InfoScreen\InternalService\$DIC
Container $DIC
Definition:
class.InternalService.php:27
ILIAS\InfoScreen\InternalService\data
data()
Definition:
class.InternalService.php:35
components
ILIAS
InfoScreen
Service
class.InternalService.php
Generated on Mon Apr 21 2025 23:02:10 for ILIAS by
1.8.13 (using
Doxyfile
)