ILIAS
trunk Revision v11.0_alpha-1723-g8e69f309bab
◀ 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\PersonalWorkspace
;
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\PersonalWorkspace\InternalService\gui
gui()
Definition:
class.InternalService.php:52
ILIAS\PersonalWorkspace\InternalDataService
PersonalWorkspace internal data service.
Definition:
class.InternalDataService.php:27
ILIAS\PersonalWorkspace\InternalService\domain
domain()
Definition:
class.InternalService.php:67
ILIAS\PersonalWorkspace\InternalRepoService
PersonalWorkspace internal data service.
Definition:
class.InternalRepoService.php:27
ILIAS\PersonalWorkspace\InternalGUIService
PersonalWorkspace internal ui service.
Definition:
class.InternalGUIService.php:30
ILIAS\PersonalWorkspace
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.StandardGUIRequest.php:19
ILIAS\PersonalWorkspace\InternalService\$gui
InternalGUIService $gui
Definition:
class.InternalService.php:30
ILIAS\PersonalWorkspace\InternalService\$data
InternalDataService $data
Definition:
class.InternalService.php:29
ILIAS\PersonalWorkspace\InternalService
PersonalWorkspace internal service.
Definition:
class.InternalService.php:27
ILIAS\PersonalWorkspace\InternalService\__construct
__construct()
Definition:
class.InternalService.php:34
ILIAS\PersonalWorkspace\InternalService\$domain
InternalDomainService $domain
Definition:
class.InternalService.php:31
$DIC
global $DIC
Definition:
shib_login.php:22
ILIAS\PersonalWorkspace\InternalService\$repo
InternalRepoService $repo
Definition:
class.InternalService.php:32
ILIAS\PersonalWorkspace\InternalService\repo
repo()
Definition:
class.InternalService.php:57
ILIAS\PersonalWorkspace\InternalService\data
data()
Definition:
class.InternalService.php:62
ILIAS\PersonalWorkspace\InternalDomainService
PersonalWorkspace internal domain service.
Definition:
class.InternalDomainService.php:29
components
ILIAS
PersonalWorkspace
Service
class.InternalService.php
Generated on Sun Apr 6 2025 23:02:35 for ILIAS by
1.8.13 (using
Doxyfile
)