ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ 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\HTMLLearningModule
;
22
23
use
ILIAS\DI\Container
;
24
28
class
InternalService
29
{
30
protected
InternalDataService
$data
;
31
protected
InternalRepoService
$repo
;
32
protected
InternalDomainService
$domain
;
33
protected
InternalGUIService
$gui
;
34
35
public
function
__construct
(
Container
$DIC
)
36
{
37
$this->
data
=
new
InternalDataService
();
38
39
$this->
repo
=
new
InternalRepoService
(
40
$this->
data
(),
41
$DIC->database()
42
);
43
$this->
domain
=
new
InternalDomainService
(
44
$DIC,
45
$this->
repo
,
46
$this->
data
47
);
48
$this->
gui
=
new
InternalGUIService
(
49
$DIC,
50
$this->
data
,
51
$this->domain
52
);
53
}
54
55
public
function
data
():
InternalDataService
56
{
57
return
$this->data
;
58
}
59
60
public
function
repo
():
InternalRepoService
61
{
62
return
$this->repo
;
63
}
64
65
public
function
domain
():
InternalDomainService
66
{
67
return
$this->domain
;
68
}
69
70
public
function
gui
():
InternalGUIService
71
{
72
return
$this->gui
;
73
}
74
}
ILIAS\HTMLLearningModule\InternalDataService
Definition:
class.InternalDataService.php:26
ILIAS\HTMLLearningModule\InternalRepoService
Definition:
class.InternalRepoService.php:26
ILIAS\HTMLLearningModule\InternalService\__construct
__construct(Container $DIC)
Definition:
class.InternalService.php:35
Container
ILIAS\HTMLLearningModule\InternalService\repo
repo()
Definition:
class.InternalService.php:60
ILIAS\HTMLLearningModule\InternalService\data
data()
Definition:
class.InternalService.php:55
ILIAS\HTMLLearningModule\InternalService
Definition:
class.InternalService.php:28
ILIAS\HTMLLearningModule\InternalService\$domain
InternalDomainService $domain
Definition:
class.InternalService.php:32
$DIC
global $DIC
Definition:
shib_login.php:22
ILIAS\HTMLLearningModule\InternalService\$repo
InternalRepoService $repo
Definition:
class.InternalService.php:31
ILIAS\HTMLLearningModule\InternalService\domain
domain()
Definition:
class.InternalService.php:65
ILIAS\HTMLLearningModule\InternalService\$gui
InternalGUIService $gui
Definition:
class.InternalService.php:33
ILIAS\HTMLLearningModule
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.StandardGUIRequest.php:19
ILIAS\HTMLLearningModule\InternalService\$data
InternalDataService $data
Definition:
class.InternalService.php:30
ILIAS\Container
Definition:
Container.php:23
ILIAS\HTMLLearningModule\InternalDomainService
Definition:
class.InternalDomainService.php:29
ILIAS\HTMLLearningModule\InternalGUIService
Definition:
class.InternalGUIService.php:29
ILIAS\HTMLLearningModule\InternalService\gui
gui()
Definition:
class.InternalService.php:70
components
ILIAS
HTMLLearningModule
Service
class.InternalService.php
Generated on Thu Apr 3 2025 23:02:17 for ILIAS by
1.8.13 (using
Doxyfile
)