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