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
InitCtrlService.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
ILIAS\DI\Container
;
22
use
ILIAS\components\Help\ScreenId\HelpScreenIdObserver
;
23
31
final
class
InitCtrlService
32
{
40
public
function
init
(
Container
$dic
): void
41
{
42
$this->
abortIfMissingDependencies
($dic);
43
44
try
{
45
$ctrl_structure =
new
ilCtrlStructure
(
46
require
ilCtrlStructureArtifactObjective::PATH
(),
47
require
ilCtrlBaseClassArtifactObjective::PATH
(),
48
require
ilCtrlSecurityArtifactObjective::PATH
()
49
);
50
}
catch
(
Throwable
$t) {
51
throw
new
ilCtrlException
(self::class .
" could not require artifacts, try `composer du` first."
);
52
}
53
54
$token_repository =
new
ilCtrlTokenRepository
();
55
$path_factory =
new
ilCtrlPathFactory
($ctrl_structure);
56
$context
=
new
ilCtrlContext
(
57
$path_factory,
58
$dic->
http
()->wrapper()->query(),
59
$dic->
refinery
()
60
);
61
62
// create global instance of ilCtrl
63
$GLOBALS
[
'ilCtrl'
] =
new
ilCtrl
(
64
$ctrl_structure,
65
$token_repository,
66
$path_factory,
67
$context
,
68
$dic[
"http.response_sender_strategy"
],
69
$dic->
http
()->request(),
70
$dic->
http
()->wrapper()->post(),
71
$dic->
http
()->wrapper()->query(),
72
$dic->
refinery
(),
73
$dic[
"component.factory"
],
74
new
ilCtrlSubject
(),
75
new
ilCtrlQueryRegexParser
(),
76
);
77
78
// add helper function to DI container that
79
// returns the global instance.
80
$dic[
'ilCtrl'
] =
static
function
() {
81
return
$GLOBALS[
'ilCtrl'
];
82
};
83
}
84
92
private
function
abortIfMissingDependencies
(
Container
$dic
): void
93
{
94
if
(!$dic->offsetExists(
'http'
)) {
95
throw
new
ilCtrlException
(
"Cannot initialize ilCtrl if HTTP Services are not yet available."
);
96
}
97
98
if
(!$dic->offsetExists(
'refinery'
)) {
99
throw
new
ilCtrlException
(
"Cannot initialize ilCtrl if Refinery Factory is not yet available."
);
100
}
101
102
// if (!$dic->offsetExists('ilDB')) {
103
// throw new ilCtrlException("Cannot initialize ilCtrl if Database is not yet available.");
104
// }
105
}
106
}
$context
$context
Definition:
webdav.php:31
ILIAS\DI\Container\http
http()
Definition:
Container.php:173
InitCtrlService
Class InitCtrlService wraps the initialization of ilCtrl.
Definition:
InitCtrlService.php:31
ilCtrlSubject
Definition:
class.ilCtrlSubject.php:26
ilCtrlPathFactory
Class ilCtrlPathFactory.
Definition:
class.ilCtrlPathFactory.php:26
ilCtrlContext
Class ilCtrlContext is responsible for holding the current context information.
Definition:
class.ilCtrlContext.php:31
ilCtrlStructure
Class ilCtrlStructure holds the currently read control structure.
Definition:
class.ilCtrlStructure.php:26
InitCtrlService\init
init(Container $dic)
Initializes the ilCtrl service.
Definition:
InitCtrlService.php:40
ILIAS\Setup\Artifact\BuildArtifactObjective\PATH
static PATH()
Definition:
BuildArtifactObjective.php:40
HelpScreenIdObserver
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:35
Container
ILIAS\DI\Container\refinery
refinery()
Definition:
Container.php:243
$GLOBALS
$GLOBALS["DIC"]
Definition:
wac.php:53
ilCtrlTokenRepository
Class ilCtrlTokenRepository.
Definition:
class.ilCtrlTokenRepository.php:26
InitCtrlService\abortIfMissingDependencies
abortIfMissingDependencies(Container $dic)
Aborts if another dependency required by the ctrl service is not yet available.
Definition:
InitCtrlService.php:92
ilCtrlException
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilCtrlException.php:24
ilCtrlQueryRegexParser
Definition:
class.ilCtrlQueryRegexParser.php:24
$dic
$dic
Definition:
result.php:31
ilCtrl
Throwable
components
ILIAS
Init
classes
Dependencies
InitCtrlService.php
Generated on Thu Apr 3 2025 23:03:07 for ILIAS by
1.8.13 (using
Doxyfile
)