ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
wac.php
Go to the documentation of this file.
1 <?php
32 
34 require_once(__DIR__ . '/../vendor/composer/vendor/autoload.php');
35 
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 
54 
59 
60 //TODO: fix tests and mod_xsendfile which refuses to work
62 
63 //send response
64 $Services->sendResponse();
$c
Definition: deliver.php:25
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
$container
Definition: wac.php:36
$GLOBALS["DIC"]
Definition: wac.php:53
$Services
Definition: wac.php:58
static run(Services $httpState, CookieFactory $cookieFactory)