ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilComponentDefinitionsStoredObjective.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 use ILIAS\Setup;
22 use ILIAS\DI;
24 
25 class ilComponentDefinitionsStoredObjective implements Setup\Objective
26 {
30  protected $populate_before;
31 
32  public function __construct(bool $populate_before = true)
33  {
34  $this->populate_before = $populate_before;
35  }
36 
40  public function getHash(): string
41  {
42  return hash("sha256", self::class);
43  }
44 
48  public function getLabel(): string
49  {
50  return "Module- and Servicedefinitions are stored.";
51  }
52 
56  public function isNotable(): bool
57  {
58  return true;
59  }
60 
64  public function getPreconditions(Setup\Environment $environment): array
65  {
66  return [
67  new \ilDatabaseUpdatedObjective(),
68  new \ilDatabaseUpdateStepsExecutedObjective(new ilCOPageDBUpdateSteps()),
69  new \ilSettingsFactoryExistsObjective(),
70  new \ilComponentRepositoryExistsObjective(),
71  new \ilComponentFactoryExistsObjective(),
72  ];
73  }
74 
78  public function achieve(Setup\Environment $environment): Setup\Environment
79  {
80  $ilias_path = __DIR__ . "/../../../..";
81 
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);
91 
92  // ATTENTION: This is a total abomination. It only exists to allow various
93  // sub components of the various readers to run. This is a memento to the
94  // fact, that dependency injection is something we want. Currently, every
95  // component could just service locate the whole world via the global $DIC.
96  $DIC = $GLOBALS["DIC"];
97  $GLOBALS["DIC"] = new DI\Container();
98  $GLOBALS["DIC"]["ilDB"] = $db;
99  $GLOBALS["DIC"]["ilIliasIniFile"] = $ini;
100  $GLOBALS["DIC"]["ilClientIniFile"] = $client_ini;
101  $GLOBALS["DIC"]["ilBench"] = null;
102  $GLOBALS["DIC"]["ilObjDataCache"] = null;
103  $GLOBALS["DIC"]["lng"] = new class () {
104  public function loadLanguageModule(): void
105  {
106  }
107  };
108  $GLOBALS["DIC"]["ilLog"] = new class () {
109  public function write(): void
110  {
111  }
112  public function debug(): void
113  {
114  }
115  };
116  $GLOBALS["DIC"]["ilLoggerFactory"] = new class () {
117  public function getRootLogger()
118  {
119  return new class () {
120  public function write(): void
121  {
122  }
123  };
124  }
125  public function getLogger()
126  {
127  return new class () {
128  public function write(): void
129  {
130  }
131  };
132  }
133  };
134  if (!defined("ILIAS_LOG_ENABLED")) {
135  define("ILIAS_LOG_ENABLED", false);
136  }
137  if (!defined("ILIAS_ABSOLUTE_PATH")) {
138  define("ILIAS_ABSOLUTE_PATH", dirname(__FILE__, 6));
139  }
140 
141  $reader = new \ilComponentDefinitionReader(
142  new \ilBadgeDefinitionProcessor($db),
143  new \ilCOPageDefinitionProcessor($db),
146  new \ILIAS\Cron\Setup\DefinitionProcessor(
147  $db,
148  $settings_factory->settingsFor(),
149  $component_repository,
150  $component_factory
151  ),
153  new \ilObjectDefinitionProcessor($db),
154  new \ilSystemCheckDefinitionProcessor($db),
155  new \ilSecurePathDefinitionProcessor($db),
156  );
157  $reader->purge();
158  $reader->readComponentDefinitions();
159 
160  $GLOBALS["DIC"] = $DIC;
161 
162  return $environment;
163  }
164 
168  public function isApplicable(Setup\Environment $environment): bool
169  {
170  return true;
171  }
172 }
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...
Definition: Container.php:19
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$GLOBALS["DIC"]
Definition: wac.php:53
global $DIC
Definition: shib_login.php:22
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.
Definition: Environment.php:27
$ini
Definition: raiseError.php:20