ILIAS
trunk Revision v11.0_alpha-1715-g7fc467680fb
◀ 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
wac.php
Go to the documentation of this file.
1
<?php
23
use
ILIAS\DI\Container
;
24
use
ILIAS\HTTP\Request\RequestFactoryImpl
;
25
use
ILIAS\HTTP\Response\ResponseFactoryImpl
;
26
use
ILIAS\HTTP\Cookies\CookieJarFactoryImpl
;
27
use
ILIAS\HTTP\Response\Sender\DefaultResponseSenderStrategy
;
28
use
ILIAS\HTTP\Duration\DurationFactory
;
29
use
ILIAS\HTTP\Duration\Increment\IncrementFactory
;
30
use
ILIAS\HTTP\Services
;
31
use
ILIAS\HTTP\Cookies\CookieFactoryImpl
;
32
34
require_once(__DIR__ .
'/../vendor/composer/vendor/autoload.php'
);
35
36
$container
=
new
Container
();
37
38
//manually init http service
39
$container
[
'http.request_factory'
] =
static
fn(
$c
):
RequestFactoryImpl
=> new
RequestFactoryImpl
();
40
41
$container
[
'http.response_factory'
] =
static
fn(
$c
):
ResponseFactoryImpl
=> new
ResponseFactoryImpl
();
42
43
$container
[
'http.cookie_jar_factory'
] =
static
fn(
$c
):
CookieJarFactoryImpl
=> new
CookieJarFactoryImpl
();
44
45
$container
[
'http.response_sender_strategy'
] =
static
fn(
$c
):
DefaultResponseSenderStrategy
=> new
DefaultResponseSenderStrategy
();
46
47
$container
[
'http.duration_factory'
] =
static
fn(
$c
):
DurationFactory
=> new
DurationFactory
(
48
new
IncrementFactory
()
49
);
50
51
$container
[
'http'
] =
static
fn(
$c
):
Services
=> new
Services
(
$c
);
52
53
$GLOBALS
[
"DIC"
] =
$container
;
54
58
$Services
=
$container
[
'http'
];
59
60
//TODO: fix tests and mod_xsendfile which refuses to work
61
ilWebAccessCheckerDelivery::run
(
$Services
,
new
CookieFactoryImpl
());
62
63
//send response
64
$Services
->sendResponse();
CookieJarFactoryImpl
ILIAS\HTTP\Cookies\CookieFactoryImpl
Definition:
CookieFactoryImpl.php:33
ILIAS\HTTP\Cookies\CookieJarFactoryImpl
Definition:
CookieJarFactoryImpl.php:34
ILIAS\StaticURL\Response\Response\ResponseFactoryImpl
Definition:
ResponseFactoryImpl.php:37
ResponseFactoryImpl
CookieFactoryImpl
$c
$c
Definition:
deliver.php:25
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:35
$container
$container
Definition:
wac.php:36
Services
ILIAS\StaticURL\Request\Request\RequestFactoryImpl
Definition:
RequestFactoryImpl.php:38
Container
ILIAS\HTTP\Duration\DurationFactory
Definition:
DurationFactory.php:28
ILIAS\HTTP\Duration\Increment\IncrementFactory
Definition:
IncrementFactory.php:26
$GLOBALS
$GLOBALS["DIC"]
Definition:
wac.php:53
RequestFactoryImpl
IncrementFactory
DefaultResponseSenderStrategy
$Services
$Services
Definition:
wac.php:58
ilWebAccessCheckerDelivery\run
static run(Services $httpState, CookieFactory $cookieFactory)
Definition:
class.ilWebAccessCheckerDelivery.php:37
ILIAS\StaticURL\Response\Response::Sender\DefaultResponseSenderStrategy
Class DefaultResponseSenderStrategy.
Definition:
DefaultResponseSenderStrategy.php:31
DurationFactory
components
ILIAS
WebAccessChecker
resources
wac.php
Generated on Sat Apr 5 2025 23:04:36 for ILIAS by
1.8.13 (using
Doxyfile
)