19 declare(strict_types=1);
34 new \ilIniFilesLoadedObjective(),
35 new \ilDatabaseInitializedObjective()
41 $client_ini = $environment->
getResource(Environment::RESOURCE_CLIENT_INI);
45 $client_ini->readVariable(
"db",
"type") ??
"mysql",
46 "The storage backend that is used for the database." 50 $client_ini->readVariable(
"db",
"host"),
51 "The host where the storage backend is located." 55 $client_ini->readVariable(
"db",
"port"),
56 "The port where the storage backend is located at the host." 60 $client_ini->readVariable(
"db",
"name"),
61 "The name of the database in the storage backend." 65 $client_ini->readVariable(
"db",
"user"),
66 "The user to be used for the storage backend." 70 PHP_SAPI ===
'cli' ? $client_ini->readVariable(
"db",
"pass") :
'********',
71 "The password for the user for the storage backend." 76 $db = $environment->
getResource(Environment::RESOURCE_DATABASE);
92 $GLOBALS[
"DIC"][
"ilLog"] =
new class () {
93 public function write():
void 96 public function info():
void 99 public function warning($msg):
void 102 public function error($msg):
void 107 $GLOBALS[
"DIC"][
"ilLoggerFactory"] =
new class () {
108 public function getRootLogger():
object 110 return new class () {
111 public function write():
void 117 if (!defined(
"CLIENT_DATA_DIR")) {
118 define(
"CLIENT_DATA_DIR",
$ini->readVariable(
"clients",
"datadir") .
"/" .
$client_id);
120 if (!defined(
"CLIENT_WEB_DIR")) {
121 define(
"CLIENT_WEB_DIR", dirname(__DIR__, 4) .
"/data/" .
$client_id);
123 if (!defined(
"ILIAS_ABSOLUTE_PATH")) {
124 define(
"ILIAS_ABSOLUTE_PATH", dirname(__FILE__, 5));
126 if (!defined(
"ILIAS_LOG_ENABLED")) {
127 define(
"ILIAS_LOG_ENABLED",
false);
129 if (!defined(
"ROOT_FOLDER_ID")) {
130 define(
"ROOT_FOLDER_ID", (
int) $client_ini->readVariable(
"system",
"ROOT_FOLDER_ID"));
132 if (!defined(
"ROLE_FOLDER_ID")) {
133 define(
"ROLE_FOLDER_ID", (
int) $client_ini->readVariable(
"system",
"ROLE_FOLDER_ID"));
135 if (!defined(
"SYSTEM_FOLDER_ID")) {
136 define(
"SYSTEM_FOLDER_ID", (
int) $client_ini->readVariable(
"system",
"SYSTEM_FOLDER_ID"));
143 $db_update->getCustomUpdatesCurrentVersion() ?? 0,
144 "The version of the custom database schema that is currently installed." 147 "available_custom_version",
148 $db_update->getCustomUpdatesFileVersion() ?? 0,
149 "The version of the custom database schema that is available in the current source." 152 "custom_update_required",
153 $db_update->customUpdatesAvailable(),
154 "Does the database require a custom update?"
storeStableBool(string $key, bool $value, ?string $description=null)
collectFrom(Environment $environment, Storage $storage)
getTentativePreconditions(Environment $environment)
Customizing of pimple-DIC for ILIAS.
storeConfigText(string $key, string $value, ?string $description=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
info()
description: > Example for rendering a info message box.
Base class to simplify collection of metrics.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
storeStableCounter(string $key, int $value, ?string $description=null)
An environment holds resources to be used in the setup process.