ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ ilDoc Overview
sessioncheck.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
ILIAS\Data\Factory
as DataFactory;
22
23
if
(!file_exists(
'../ilias.ini.php'
)) {
24
die(
'The ILIAS setup is not completed. Please run the setup routine.'
);
25
}
26
27
require_once
'../vendor/composer/vendor/autoload.php'
;
28
require_once __DIR__ .
'/../artifacts/bootstrap_default.php'
;
29
entry_point
(
'ILIAS Legacy Initialisation Adapter'
);
30
31
ilContext::init
(
ilContext::CONTEXT_SESSION_REMINDER
);
32
33
ilInitialisation::initILIAS
();
34
36
$DIC
->http()->saveResponse(
37
(
38
new
ilSessionReminderCheck
(
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();
ILIAS\Data\Factory
Builds data types.
Definition:
Factory.php:36
ilContext\CONTEXT_SESSION_REMINDER
const CONTEXT_SESSION_REMINDER
Definition:
class.ilContext.php:38
ilContext\init
static init(string $a_type)
Init context by type.
Definition:
class.ilContext.php:52
ilInitialisation\initILIAS
static initILIAS()
ilias initialisation
Definition:
class.ilInitialisation.php:1144
ilSessionReminderCheck
Definition:
class.ilSessionReminderCheck.php:29
entry_point
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
$DIC
global $DIC
Definition:
shib_login.php:26
components
ILIAS
Authentication
resources
sessioncheck.php
Generated on Sat Oct 18 2025 23:02:29 for ILIAS by
1.9.4 (using
Doxyfile
)