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