ILIAS
release_8 Revision v8.19
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
j
l
m
p
s
t
u
+
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
Ö
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.InternalService.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
namespace
ILIAS\Survey
;
22
23
use
ILIAS\Survey\Mode\ModeFactory
;
24
29
class
InternalService
30
{
31
protected
InternalDataService
$data
;
32
protected
InternalGUIService
$gui
;
33
protected
InternalDomainService
$domain
;
34
protected
InternalRepoService
$repo
;
35
protected
ModeFactory
$mode_factory
;
36
protected \ilDBInterface
$db
;
37
38
public
function
__construct
()
39
{
40
global
$DIC
;
41
42
$object_service = $DIC->object();
43
$this->db = $DIC->database();
44
$this->mode_factory =
new
ModeFactory
();
45
$this->
data
=
new
InternalDataService
();
46
$this->
repo
=
new
InternalRepoService
(
47
$this->
data
(),
48
$this->db
49
);
50
$this->
domain
=
new
InternalDomainService
(
51
$this->mode_factory,
52
$this->
repo
,
53
$this->
data
54
);
55
$this->
gui
=
new
InternalGUIService
(
56
$object_service,
57
$this->mode_factory,
58
$this->
domain
59
);
60
$this->mode_factory->setInternalService($this);
61
}
62
63
public
function
gui
():
InternalGUIService
64
{
65
return
$this->gui
;
66
}
67
68
public
function
repo
():
InternalRepoService
69
{
70
return
$this->repo
;
71
}
72
73
public
function
data
():
InternalDataService
74
{
75
return
$this->data
;
76
}
77
78
public
function
domain
():
InternalDomainService
79
{
80
return
$this->domain
;
81
}
82
}
ILIAS\Survey\InternalService\$data
InternalDataService $data
Definition:
class.InternalService.php:31
ILIAS\Survey\InternalGUIService
Survey internal ui service.
Definition:
class.InternalGUIService.php:34
ILIAS\Survey\InternalService\__construct
__construct()
Constructor.
Definition:
class.InternalService.php:38
ModeFactory
ILIAS\Survey\InternalService\data
data()
Definition:
class.InternalService.php:73
ILIAS\Survey\InternalService\$gui
InternalGUIService $gui
Definition:
class.InternalService.php:32
ILIAS\Survey\InternalService\domain
domain()
Definition:
class.InternalService.php:78
$DIC
global $DIC
Definition:
feed.php:28
ILIAS\Survey\InternalService\$repo
InternalRepoService $repo
Definition:
class.InternalService.php:34
ILIAS\Survey\InternalRepoService
Survey internal data service.
Definition:
class.InternalRepoService.php:31
ILIAS\Survey\InternalService\repo
repo()
Definition:
class.InternalService.php:68
ILIAS\Survey\InternalService\$mode_factory
ModeFactory $mode_factory
Definition:
class.InternalService.php:35
ILIAS\Survey
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\Survey\InternalService\gui
gui()
Definition:
class.InternalService.php:63
ILIAS\Survey\InternalService\$domain
InternalDomainService $domain
Definition:
class.InternalService.php:33
ILIAS\Survey\InternalDataService
Survey internal data service.
Definition:
class.InternalDataService.php:27
ILIAS\Survey\InternalDomainService
Survey internal domain service.
Definition:
class.InternalDomainService.php:34
ILIAS\Survey\Mode\ModeFactory
Definition:
class.ModeFactory.php:30
ILIAS\Survey\InternalService
Survey internal service.
Definition:
class.InternalService.php:29
ILIAS\Survey\InternalService\$db
ilDBInterface $db
Definition:
class.InternalService.php:36
Modules
Survey
Service
class.InternalService.php
Generated on Tue Apr 1 2025 22:01:20 for ILIAS by
1.8.13 (using
Doxyfile
)