ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
sessioncheck.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21use ILIAS\Data\Factory as DataFactory;
22
23if (!file_exists('../ilias.ini.php')) {
24 die('The ILIAS setup is not completed. Please run the setup routine.');
25}
26
27require_once '../vendor/composer/vendor/autoload.php';
28require_once __DIR__ . '/../artifacts/bootstrap_default.php';
29entry_point('ILIAS Legacy Initialisation Adapter');
30
32
34
36$DIC->http()->saveResponse(
37 (
39 $DIC->http(),
40 $DIC->refinery(),
41 $DIC->language(),
42 $DIC->database(),
43 $DIC['ilClientIniFile'],
44 $DIC->logger()->auth(),
45 (new DataFactory())->clock()->utc(),
46 $DIC->settings()
47 )
48 )->handle()
49);
50$DIC->http()->sendResponse();
51$DIC->http()->close();
Builds data types.
Definition: Factory.php:36
const CONTEXT_SESSION_REMINDER
static init(string $a_type)
Init context by type.
static initILIAS()
ilias initialisation
entry_point(string $name)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: result1.php:21
global $DIC
Definition: shib_login.php:26