ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilTreeSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 use ILIAS\Setup;
30 
31 class ilTreeSetupAgent implements Agent
32 {
33  protected Refinery $refinery;
34 
35  public function __construct(Refinery $refinery)
36  {
37  $this->refinery = $refinery;
38  }
39 
40  public function hasConfig(): bool
41  {
42  return false;
43  }
44 
46  {
47  return $this->refinery->custom()->transformation(static function ($data): Config {
48  return new NullConfig();
49  });
50  }
51 
52  public function getInstallObjective(?Config $config = null): Objective
53  {
54  return new Objective\NullObjective();
55  }
56 
57  public function getUpdateObjective(?Config $config = null): Objective
58  {
60  }
61 
62  public function getBuildObjective(): Objective
63  {
64  return new Objective\NullObjective();
65  }
66 
67  public function getStatusObjective(Metrics\Storage $storage): Objective
68  {
69  return new Setup\ObjectiveCollection(
70  'components/ILIAS/Tree',
71  true,
74  );
75  }
76 
77  public function getMigrations(): array
78  {
79  return [];
80  }
81 
82  public function getNamedObjectives(?Config $config = null): array
83  {
84  return [
85  'mp-to-ns' => new ObjectiveConstructor(
86  'Migrate the ILIAS repository tree from Materialized Path to Nested Set',
87  static function (): Objective {
88  return new ilTreeImplementationSwitch(
90  );
91  }
92  ),
93  'ns-to-mp' => new ObjectiveConstructor(
94  'Migrate the ILIAS repository tree from Nested to Materialized Path',
95  static function (): Objective {
96  return new ilTreeImplementationSwitch(
98  );
99  }
100  )
101  ];
102  }
103 }
getStatusObjective(Metrics\Storage $storage)
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
getInstallObjective(?Config $config=null)
__construct(Refinery $refinery)
getUpdateObjective(?Config $config=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getNamedObjectives(?Config $config=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A transformation is a function from one datatype to another.
A configuration for the setup.
Definition: Config.php:26
A configuration with no content.
Definition: NullConfig.php:26