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.InternalDomainService.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
namespace
ILIAS\Exercise
;
22
23
use
ILIAS\Repository\GlobalDICDomainServices
;
24
use
ILIAS\DI\Container
;
25
30
class
InternalDomainService
31
{
32
use
GlobalDICDomainServices
;
33
protected
InternalDataService
$data
;
34
protected
InternalRepoService
$repo
;
35
protected
Assignment\DomainService
$assignment_service
;
36
37
public
function
__construct
(
38
Container
$DIC
,
39
InternalDataService
$data,
40
InternalRepoService
$repo
41
) {
42
$this->data =
$data
;
43
$this->repo =
$repo
;
44
$this->assignment_service =
new
Assignment\DomainService
(
45
$this,
46
$repo
47
);
48
$this->
initDomainServices
($DIC);
49
}
50
51
public
function
refinery
(): \
ILIAS
\
Refinery
\
Factory
52
{
53
global
$DIC
;
54
return
$DIC->refinery();
55
}
56
57
public
function
assignment
(): Assignment\DomainService
58
{
59
return
$this->assignment_service
;
60
}
61
}
ILIAS\Exercise\InternalRepoService
Internal repo factory.
Definition:
class.InternalRepoService.php:27
ILIAS\Exercise\InternalDomainService\$assignment_service
Assignment DomainService $assignment_service
Definition:
class.InternalDomainService.php:35
ILIAS\Exercise\InternalDomainService\assignment
assignment()
Definition:
class.InternalDomainService.php:57
ILIAS
Class ChatMainBarProvider .
ILIAS\Exercise\Assignment\DomainService
Assignments domain service.
Definition:
class.DomainService.php:30
ILIAS\Repository\initDomainServices
initDomainServices(\ILIAS\DI\Container $DIC)
Definition:
trait.GlobalDICDomainServices.php:36
ILIAS\Exercise\InternalDomainService\$data
InternalDataService $data
Definition:
class.InternalDomainService.php:33
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:31
ILIAS\Exercise\InternalDomainService\__construct
__construct(Container $DIC, InternalDataService $data, InternalRepoService $repo)
Definition:
class.InternalDomainService.php:37
ILIAS\Exercise
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$DIC
global $DIC
Definition:
feed.php:28
Container
ILIAS\Exercise\InternalDomainService\$repo
InternalRepoService $repo
Definition:
class.InternalDomainService.php:34
ILIAS\Repository\GlobalDICDomainServices
trait GlobalDICDomainServices
Definition:
trait.GlobalDICDomainServices.php:33
Factory
ILIAS\Exercise\InternalDataService
Internal factory for data objects.
Definition:
class.InternalDataService.php:27
ILIAS\Exercise\InternalDomainService
Exercise domain service (business logic)
Definition:
class.InternalDomainService.php:30
ILIAS\Exercise\InternalDomainService\refinery
refinery()
Definition:
class.InternalDomainService.php:51
Modules
Exercise
Service
classes
class.InternalDomainService.php
Generated on Fri Apr 4 2025 22:01:36 for ILIAS by
1.8.13 (using
Doxyfile
)