19 declare(strict_types=1);
37 return hash(
"sha256", self::class);
42 return "ILIAS directories are created";
57 $web_dir = dirname(__DIR__, 5) .
"/public/data";
58 $root = dirname(__DIR__, 5);
67 if ($environment->
hasConfigFor(InstallCommand::IMPORT)) {
75 $tmp_dir . DIRECTORY_SEPARATOR .
"web_data",
86 $tmp_dir . DIRECTORY_SEPARATOR .
"data",
93 $tmp_dir . DIRECTORY_SEPARATOR .
"Customizing",
94 $root .
"/Customizing",
106 $customizing_dir_objective
114 $ini->setVariable(
"clients",
"datadir", $this->config->getDataDir());
115 if (!
$ini->write()) {
121 if (!is_null($tmp_dir)) {
134 if ($environment->
hasConfigFor(InstallCommand::IMPORT)) {
140 return $ini->readVariable(
"clients",
"datadir") !== $this->config->getDataDir();
145 if (is_file($path)) {
152 RecursiveIteratorIterator::CHILD_FIRST
155 foreach ($files as $file_info) {
156 if ($file_info->isDir()) {
157 rmdir($file_info->getRealPath());
160 unlink($file_info->getRealPath());
163 if ($delete_base_dir) {
achieve(Environment $environment)
Objectives can be achieved.
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.
getHash()
Get a hash for this objective.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
deleteRecursive(string $path, bool $delete_base_dir=false)
A non-objective, nothing to do to achieve it...
A wrapper around an objective that adds some preconditions.
Signals that some goal won't be achievable by actions of the system ever.
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
getPreconditions(Environment $environment)
An environment holds resources to be used in the setup process.
__construct(protected \ilFileSystemSetupConfig $config)
hasConfigFor(string $component)
getConfigFor(string $component)
isApplicable(Environment $environment)
getLabel()
Get a label that describes this objective.