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
InitCtrlService.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
/* Copyright (c) 2021 Thibeau Fuhrer <thf@studer-raimann.ch> Extended GPL, see docs/LICENSE */
6
7
use
ILIAS\DI\Container
;
8
16
final
class
InitCtrlService
17
{
25
public
function
init
(
Container
$dic
): void
26
{
27
$this->
abortIfMissingDependencies
($dic);
28
$ilias_path = dirname(__FILE__, 5) .
'/'
;
29
30
try
{
31
$ctrl_structure =
new
ilCtrlStructure
(
32
require $ilias_path .
ilCtrlStructureArtifactObjective::ARTIFACT_PATH
,
33
require $ilias_path .
ilCtrlBaseClassArtifactObjective::ARTIFACT_PATH
,
34
require $ilias_path .
ilCtrlSecurityArtifactObjective::ARTIFACT_PATH
35
);
36
}
catch
(
Throwable
$t) {
37
throw
new
ilCtrlException
(self::class .
" could not require artifacts, try `composer du` first."
);
38
}
39
40
$token_repository =
new
ilCtrlTokenRepository
();
41
$path_factory =
new
ilCtrlPathFactory
($ctrl_structure);
42
$context
=
new
ilCtrlContext
(
43
$path_factory,
44
$dic->
http
()->wrapper()->query(),
45
$dic->
refinery
()
46
);
47
48
// create global instance of ilCtrl
49
$GLOBALS
[
'ilCtrl'
] =
new
ilCtrl
(
50
$ctrl_structure,
51
$token_repository,
52
$path_factory,
53
$context
,
54
$dic[
"http.response_sender_strategy"
],
55
$dic->
http
()->request(),
56
$dic->
http
()->wrapper()->post(),
57
$dic->
http
()->wrapper()->query(),
58
$dic->
refinery
(),
59
$dic[
"component.factory"
],
60
new
ilCtrlQueryRegexParser
()
61
);
62
63
// add helper function to DI container that
64
// returns the global instance.
65
$dic[
'ilCtrl'
] =
static
function
() {
66
return
$GLOBALS[
'ilCtrl'
];
67
};
68
}
69
77
private
function
abortIfMissingDependencies
(
Container
$dic
): void
78
{
79
if
(!$dic->offsetExists(
'http'
)) {
80
throw
new
ilCtrlException
(
"Cannot initialize ilCtrl if HTTP Services are not yet available."
);
81
}
82
83
if
(!$dic->offsetExists(
'refinery'
)) {
84
throw
new
ilCtrlException
(
"Cannot initialize ilCtrl if Refinery Factory is not yet available."
);
85
}
86
87
// if (!$dic->offsetExists('ilDB')) {
88
// throw new ilCtrlException("Cannot initialize ilCtrl if Database is not yet available.");
89
// }
90
}
91
}
ilCtrlBaseClassArtifactObjective\ARTIFACT_PATH
const ARTIFACT_PATH
Definition:
class.ilCtrlBaseClassArtifactObjective.php:22
$context
$context
Definition:
webdav.php:29
ILIAS\DI\Container\http
http()
Definition:
Container.php:164
InitCtrlService
Class InitCtrlService wraps the initialization of ilCtrl.
Definition:
InitCtrlService.php:16
ilCtrlPathFactory
Class ilCtrlPathFactory.
Definition:
class.ilCtrlPathFactory.php:12
ilCtrlContext
Class ilCtrlContext is responsible for holding the current context information.
Definition:
class.ilCtrlContext.php:30
ilCtrlStructure
Class ilCtrlStructure holds the currently read control structure.
Definition:
class.ilCtrlStructure.php:12
InitCtrlService\init
init(Container $dic)
Initializes the ilCtrl service.
Definition:
InitCtrlService.php:25
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:31
Container
ILIAS\DI\Container\refinery
refinery()
Definition:
Container.php:239
ilCtrlSecurityArtifactObjective\ARTIFACT_PATH
const ARTIFACT_PATH
Definition:
class.ilCtrlSecurityArtifactObjective.php:24
ilCtrlStructureArtifactObjective\ARTIFACT_PATH
const ARTIFACT_PATH
Definition:
class.ilCtrlStructureArtifactObjective.php:22
$GLOBALS
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
Definition:
PEAR.php:64
ilCtrlTokenRepository
Class ilCtrlTokenRepository.
Definition:
class.ilCtrlTokenRepository.php:12
InitCtrlService\abortIfMissingDependencies
abortIfMissingDependencies(Container $dic)
Aborts if another dependency required by the ctrl service is not yet available.
Definition:
InitCtrlService.php:77
ilCtrlException
ilCtrl exceptions
Definition:
class.ilCtrlException.php:10
ilCtrlQueryRegexParser
Definition:
class.ilCtrlQueryRegexParser.php:24
$dic
$dic
Definition:
result.php:32
ilCtrl
Throwable
Services
Init
classes
Dependencies
InitCtrlService.php
Generated on Fri Apr 4 2025 22:02:47 for ILIAS by
1.8.13 (using
Doxyfile
)