ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ 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.InternalDomainService.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Blog
;
22
23
use
ILIAS\DI\Container
;
24
use
ILIAS\Repository\GlobalDICDomainServices
;
25
use
ILIAS\Blog\Exercise\BlogExercise
;
26
use
ILIAS\Blog\Access\BlogAccess
;
27
use
ILIAS\Blog\ReadingTime\ReadingTimeManager
;
28
use
ILIAS\Blog\Settings\SettingsManager
;
29
use
ILIAS\Notes
;
30
34
class
InternalDomainService
35
{
36
use
GlobalDICDomainServices
;
37
38
protected
static
array
$instance
= [];
39
protected
Container
$dic
;
40
41
public
function
__construct
(
42
Container
$DIC
,
43
protected
InternalRepoService
$repo,
44
protected
InternalDataService
$data
45
) {
46
$this->
initDomainServices
($DIC);
47
$this->dic =
$DIC
;
48
}
49
50
public
function
exercise
(
int
$a_node_id): BlogExercise
51
{
52
return
new
BlogExercise(
53
$a_node_id,
54
$this->
repositoryTree
(),
55
$this->
user
()
56
);
57
}
58
59
public
function
blogAccess
(
60
$access_handler,
61
?
int
$node_id,
62
int
$id_type,
63
int
$user_id
,
64
int
$owner
65
): BlogAccess {
66
return
new
BlogAccess(
67
$access_handler,
68
$node_id,
69
$id_type,
70
$user_id,
71
$owner
72
);
73
}
74
75
public
function
readingTime
(): ReadingTimeManager
76
{
77
return
new
ReadingTimeManager();
78
}
79
80
public
function
notes
():
Notes
\DomainService
81
{
82
return
$this->dic->notes()->domain();
83
}
84
85
public
function
blogSettings
(): SettingsManager
86
{
87
return
self::$instance[
"settings"
] ??
88
self::$instance[
"settings"
] =
new
SettingsManager(
89
$this->data,
90
$this->repo,
91
$this
92
);
93
}
94
95
}
$data
$data
Definition:
ltiregistration.php:29
BlogAccess
ReadingTimeManager
ILIAS\Blog\InternalDomainService\readingTime
readingTime()
Definition:
class.InternalDomainService.php:75
ILIAS\Blog\InternalDomainService\blogAccess
blogAccess( $access_handler, ?int $node_id, int $id_type, int $user_id, int $owner)
Definition:
class.InternalDomainService.php:59
$user_id
int $user_id
Definition:
trait.ilExAssignmentTypeGUIBase.php:38
ILIAS\Repository\initDomainServices
initDomainServices(\ILIAS\DI\Container $DIC)
Definition:
trait.GlobalDICDomainServices.php:41
ILIAS\Export\InternalDomainService\$instance
static array $instance
Definition:
class.InternalDomainService.php:28
ILIAS\Blog\InternalDomainService
Definition:
class.InternalDomainService.php:34
ILIAS\Notes
Definition:
Notes.php:23
ILIAS\Repository\user
user()
Definition:
trait.GlobalDICDomainServices.php:66
Container
ILIAS\Notes
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.Context.php:21
ILIAS\Blog\InternalDomainService\exercise
exercise(int $a_node_id)
Definition:
class.InternalDomainService.php:50
$DIC
global $DIC
Definition:
shib_login.php:22
ILIAS\Blog\InternalDataService
Definition:
class.InternalDataService.php:26
ILIAS\Blog\InternalDomainService\blogSettings
blogSettings()
Definition:
class.InternalDomainService.php:85
BlogExercise
ILIAS\Blog\InternalDomainService\notes
notes()
Definition:
class.InternalDomainService.php:80
SettingsManager
ILIAS\Blog
ILIAS\Repository\repositoryTree
repositoryTree()
Definition:
trait.GlobalDICDomainServices.php:46
ILIAS\Blog\InternalRepoService
Definition:
class.InternalRepoService.php:25
ILIAS\Blog\InternalDomainService\$dic
Container $dic
Definition:
class.InternalDomainService.php:39
ILIAS\Repository\GlobalDICDomainServices
trait GlobalDICDomainServices
Definition:
trait.GlobalDICDomainServices.php:38
ILIAS\Blog\InternalDomainService\__construct
__construct(Container $DIC, protected InternalRepoService $repo, protected InternalDataService $data)
Definition:
class.InternalDomainService.php:41
ILIAS\Container
Definition:
Container.php:23
GlobalDICDomainServices
components
ILIAS
Blog
Service
class.InternalDomainService.php
Generated on Thu Apr 3 2025 23:02:12 for ILIAS by
1.8.13 (using
Doxyfile
)