ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilVersionWrittenToSettingsObjective.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 use ILIAS\Setup;
22 use ILIAS\Data;
23 
24 class ilVersionWrittenToSettingsObjective implements Setup\Objective
25 {
26  public const ILIAS_VERSION_KEY = "ilias_version";
27 
28  protected Data\Factory $data_factory;
29 
30  public function __construct(Data\Factory $data_factory)
31  {
32  $this->data_factory = $data_factory;
33  }
34 
35  public function getHash(): string
36  {
37  return hash(
38  "sha256",
39  get_class($this)
40  );
41  }
42 
43  public function getLabel(): string
44  {
45  return "The ILIAS Version is written to the settings.";
46  }
47 
48  public function isNotable(): bool
49  {
50  return true;
51  }
52 
53  public function getPreconditions(Setup\Environment $environment): array
54  {
55  return [
57  ];
58  }
59 
60  public function achieve(Setup\Environment $environment): Setup\Environment
61  {
62  $factory = $environment->getResource(Setup\Environment::RESOURCE_SETTINGS_FACTORY);
63  $settings = $factory->settingsFor("common");
64 
65  $current_version = $this->data_factory->version(ILIAS_VERSION_NUMERIC);
66  $settings->set(self::ILIAS_VERSION_KEY, (string) $current_version);
67 
68  return $environment;
69  }
70 
71  public function isApplicable(Setup\Environment $environment): bool
72  {
73  return true;
74  }
75 }
const ILIAS_VERSION_NUMERIC
Builds data types.
Definition: Factory.php:35
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.
Definition: Environment.php:27