ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
◀ ilDoc Overview
module.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
$cookie_path
= dirname(str_replace(
$_SERVER
[
'PATH_INFO'
],
''
,
$_SERVER
[
'PHP_SELF'
]));
22
23
chdir(__DIR__);
24
while
(!is_file(
'ilias.ini.php'
)) {
25
chdir(
'..'
);
26
$cookie_path
= dirname(
$cookie_path
);
27
if
(getcwd() ===
'/'
) {
28
die(
'Please ensure ILIAS is installed!'
);
29
}
30
}
31
32
$cookie_path
.= preg_match(
'@/$@'
,
$cookie_path
) ?
''
:
'/'
;
33
define(
'IL_COOKIE_PATH'
,
$cookie_path
);
34
35
require_once(
'libs/composer/vendor/autoload.php'
);
36
37
ilContext::init
(
ilContext::CONTEXT_SAML
);
38
ilInitialisation::initILIAS
();
39
40
\ILIAS\Saml\Module::run
();
ilInitialisation\initILIAS
static initILIAS()
ilias initialisation
Definition:
class.ilInitialisation.php:1209
ilContext\CONTEXT_SAML
const CONTEXT_SAML
Definition:
class.ilContext.php:47
$_SERVER
$_SERVER['HTTP_HOST']
Definition:
raiseError.php:10
ILIAS\Saml\Module\run
static run()
Definition:
Module.php:32
ilContext\init
static init(string $a_type)
Init context by type.
Definition:
class.ilContext.php:52
$cookie_path
$cookie_path
Definition:
module.php:21
Services
Saml
lib
module.php
Generated on Wed Sep 10 2025 14:11:52 for ILIAS by
1.8.13 (using
Doxyfile
)