19 declare(strict_types=1);
42 return hash(
"sha256", self::class);
50 return "Module- and Servicedefinitions are stored.";
67 new \ilDatabaseUpdatedObjective(),
69 new \ilSettingsFactoryExistsObjective(),
70 new \ilComponentRepositoryExistsObjective(),
71 new \ilComponentFactoryExistsObjective(),
80 $ilias_path = __DIR__ .
"/../../../..";
82 $db = $environment->getResource(
Setup\Environment::RESOURCE_DATABASE);
83 $ini = $environment->getResource(
Setup\Environment::RESOURCE_ILIAS_INI);
84 $client_ini = $environment->getResource(
Setup\Environment::RESOURCE_CLIENT_INI);
86 $component_repository = $environment->getResource(
Setup\Environment::RESOURCE_COMPONENT_REPOSITORY);
88 $component_factory = $environment->getResource(
Setup\Environment::RESOURCE_COMPONENT_FACTORY);
90 $settings_factory = $environment->getResource(
Setup\Environment::RESOURCE_SETTINGS_FACTORY);
97 $GLOBALS[
"DIC"] =
new DI\Container();
100 $GLOBALS[
"DIC"][
"ilClientIniFile"] = $client_ini;
103 $GLOBALS[
"DIC"][
"lng"] =
new class () {
104 public function loadLanguageModule():
void 108 $GLOBALS[
"DIC"][
"ilLog"] =
new class () {
109 public function write():
void 112 public function debug():
void 116 $GLOBALS[
"DIC"][
"ilLoggerFactory"] =
new class () {
117 public function getRootLogger()
119 return new class () {
120 public function write():
void 125 public function getLogger()
127 return new class () {
128 public function write():
void 134 if (!defined(
"ILIAS_LOG_ENABLED")) {
135 define(
"ILIAS_LOG_ENABLED",
false);
137 if (!defined(
"ILIAS_ABSOLUTE_PATH")) {
138 define(
"ILIAS_ABSOLUTE_PATH", dirname(__FILE__, 6));
141 $reader = new \ilComponentDefinitionReader(
148 $settings_factory->settingsFor(),
149 $component_repository,
153 new \ilObjectDefinitionProcessor($db),
154 new \ilSystemCheckDefinitionProcessor($db),
155 new \ilSecurePathDefinitionProcessor($db),
158 $reader->readComponentDefinitions();
Interface Observer Contains several chained tasks and infos about them.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
isApplicable(Setup\Environment $environment)
__construct(bool $populate_before=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
An environment holds resources to be used in the setup process.
getPreconditions(Setup\Environment $environment)