ILIAS  trunk Revision v12.0_alpha-1227-g7ff6d300864
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';
29
30require_once __DIR__ . '/../artifacts/bootstrap_default.php';
31entry_point('ILIAS Legacy Initialisation Adapter');
32
34$DIC->http()->saveResponse(
35 (
37 $DIC->http(),
38 $DIC->refinery(),
39 $DIC->language(),
40 $DIC->database(),
41 $DIC['ilClientIniFile'],
42 $DIC->logger()->auth(),
43 (new DataFactory())->clock()->utc(),
44 $DIC->settings()
45 )
46 )->handle()
47);
48$DIC->http()->sendResponse();
49$DIC->http()->close();
Builds data types.
Definition: Factory.php:36
const CONTEXT_SESSION_REMINDER
Definition: ilContext.php:38
static init(string $a_type)
Init context by type.
Definition: ilContext.php:52
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