19 declare(strict_types=1);
31 return hash(
"sha256", self::class);
36 return "The database is updated.";
54 $db = $environment->
getResource(Environment::RESOURCE_DATABASE);
55 $io = $environment->
getResource(Environment::RESOURCE_ADMIN_INTERACTION);
57 $client_ini = $environment->
getResource(Environment::RESOURCE_CLIENT_INI);
70 $GLOBALS[
"DIC"][
"ilLog"] =
new class ($io) {
75 public function write():
void 79 public function info():
void 83 public function warning($msg):
void 85 $this->io->inform($msg);
88 public function error($msg): never
91 "Problem in DB-Update: $msg" 96 $GLOBALS[
"DIC"][
"ilLoggerFactory"] =
new class () {
97 public function getRootLogger():
object 100 public function write():
void 106 $GLOBALS[
"ilCtrlStructureReader"] =
new class () {
107 public function getStructure():
void 111 public function setIniFile():
void 115 if (!defined(
"CLIENT_DATA_DIR")) {
116 define(
"CLIENT_DATA_DIR",
$ini->readVariable(
"clients",
"datadir") .
"/" .
$client_id);
118 if (!defined(
"CLIENT_WEB_DIR")) {
119 define(
"CLIENT_WEB_DIR", dirname(__DIR__, 5) .
"/public/data/" .
$client_id);
121 if (!defined(
"ILIAS_ABSOLUTE_PATH")) {
122 define(
"ILIAS_ABSOLUTE_PATH", dirname(__FILE__, 6));
124 if (!defined(
"ILIAS_LOG_ENABLED")) {
125 define(
"ILIAS_LOG_ENABLED",
false);
127 if (!defined(
"ROOT_FOLDER_ID")) {
128 define(
"ROOT_FOLDER_ID", (
int) $client_ini->readVariable(
"system",
"ROOT_FOLDER_ID"));
130 if (!defined(
"ROLE_FOLDER_ID")) {
131 define(
"ROLE_FOLDER_ID", (
int) $client_ini->readVariable(
"system",
"ROLE_FOLDER_ID"));
133 if (!defined(
"SYSTEM_FOLDER_ID")) {
134 define(
"SYSTEM_FOLDER_ID", (
int) $client_ini->readVariable(
"system",
"SYSTEM_FOLDER_ID"));
138 $db_update->applyCustomUpdates();
An objective is a desired state of the system that is supposed to be created by the setup...
isNotable()
Get to know if this is an interesting objective for a human.
getPreconditions(Environment $environment)
isApplicable(Environment $environment)
Customizing of pimple-DIC for ILIAS.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
info()
description: > Example for rendering a info message box.
Signals that some goal won't be achievable by actions of the system ever.
Read the client id of the installation from the data directory.
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
getLabel()
Get a label that describes this objective.
An environment holds resources to be used in the setup process.
__construct(Container $dic, ilPlugin $plugin)
getHash()
Get a hash for this objective.
achieve(Environment $environment)
Objectives can be achieved.