20 declare(strict_types=1);
43 return hash(
"sha256", self::class . $this->plugin_name);
51 return "Install plugin $this->plugin_name.";
69 new \ilIniFilesPopulatedObjective(),
70 new \ilDatabaseUpdatedObjective(),
71 new \ilComponentPluginAdminInitObjective(),
72 new \ilComponentRepositoryExistsObjective(),
73 new \ilComponentFactoryExistsObjective()
82 $component_repository = $environment->
getResource(Setup\Environment::RESOURCE_COMPONENT_REPOSITORY);
83 $component_factory = $environment->getResource(Setup\Environment::RESOURCE_COMPONENT_FACTORY);
84 $info = $component_repository->getPluginByName($this->plugin_name);
86 if (!$info->supportsCLISetup()) {
87 throw new \RuntimeException(
88 "Plugin $this->plugin_name does not support command line setup." 92 if ($info->isInstalled()) {
93 throw new \RuntimeException(
94 "Plugin $this->plugin_name is already installed." 98 $ORIG_DIC = $this->
initEnvironment($environment, $component_repository, $component_factory);
99 $plugin = $component_factory->getPlugin($info->getId());
112 $component_repository = $environment->getResource(Setup\Environment::RESOURCE_COMPONENT_REPOSITORY);
113 $plugin = $component_repository->getPluginByName($this->plugin_name);
115 return !
$plugin->isInstalled();
123 $db = $environment->getResource(Setup\Environment::RESOURCE_DATABASE);
124 $plugin_admin = $environment->getResource(Setup\Environment::RESOURCE_PLUGIN_ADMIN);
125 $ini = $environment->getResource(Setup\Environment::RESOURCE_ILIAS_INI);
126 $client_ini = $environment->getResource(Setup\Environment::RESOURCE_CLIENT_INI);
133 $GLOBALS[
"DIC"] =
new DI\Container();
136 $GLOBALS[
"DIC"][
"ilClientIniFile"] = $client_ini;
144 public function info(
string $a_message):
void 147 public function warning(
string $a_message):
void 150 public function error(
string $a_message):
void 153 public function debug(
string $a_message, array $a_context = []):
void 164 public static function getRootLogger():
ilLogger 168 public static function getLogger(
string $a_component_id):
ilLogger 176 $GLOBALS[
"DIC"][
"lng"]->lang_user =
'en';
177 $GLOBALS[
"DIC"][
"ilPluginAdmin"] = $plugin_admin;
181 $GLOBALS[
"DIC"][
"ilAppEventHandler"] = null;
183 $GLOBALS[
"DIC"][
"component.repository"] = $component_repository;
184 $GLOBALS[
"DIC"][
"component.factory"] = $component_factory;
186 public array $prefs = [];
190 $this->prefs[
"language"] =
"en";
199 if (!defined(
'DEBUG')) {
200 define(
'DEBUG',
false);
203 if (!defined(
'SYSTEM_ROLE_ID')) {
204 define(
'SYSTEM_ROLE_ID',
'2');
207 if (!defined(
"ILIAS_ABSOLUTE_PATH")) {
208 define(
"ILIAS_ABSOLUTE_PATH", dirname(__FILE__, 5));
211 if (!defined(
"CLIENT_ID")) {
212 define(
'CLIENT_ID', $client_ini->readVariable(
'client',
'name'));
215 if (!defined(
"ILIAS_WEB_DIR")) {
216 define(
'ILIAS_WEB_DIR', dirname(__DIR__, 4) .
"/data/");
Readable part of repository interface to ilComponentDataDB.
__construct(string $plugin_name)
isApplicable(Setup\Environment $environment)
getPreconditions(Setup\Environment $environment)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
parses the objects.xml it handles the xml-description of all ilias objects
Read the client id of the installation from the data directory.
initEnvironment(Setup\Environment $environment, \ilComponentRepository $component_repository, \ilComponentFactory $component_factory)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
achieve(Setup\Environment $environment)
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
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.