ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilComponentsSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 use ILIAS\Setup;
25 
27 {
29 
30  public function __construct(
31  protected PublicAssetManager $public_asset_manager,
32  protected array $public_assets
33  ) {
34  }
35 
39  public function hasConfig(): bool
40  {
41  return false;
42  }
43 
48  {
49  throw new LogicException(self::class . " has no Config.");
50  }
51 
55  public function getInstallObjective(?Setup\Config $config = null): Setup\Objective
56  {
58  }
59 
63  public function getUpdateObjective(?Setup\Config $config = null): Setup\Objective
64  {
65  return new Setup\ObjectiveCollection(
66  "Updates of Services/Components",
67  false,
70  ),
72  );
73  }
74 
78  public function getBuildObjective(): Setup\Objective
79  {
80  return new Setup\ObjectiveCollection(
81  "Build Objectives of \\ILIAS\\Component",
82  false,
84  "Artifacts for \\ILIAS\\Component",
85  false,
88  ),
90  $this->public_asset_manager,
91  $this->public_assets
92  )
93  );
94  }
95 
99  public function getStatusObjective(Setup\Metrics\Storage $storage): Setup\Objective
100  {
102  }
103 
107  public function getMigrations(): array
108  {
109  return [];
110  }
111 }
A objective collection is a objective that is achieved once all subobjectives are achieved...
__construct(protected PublicAssetManager $public_asset_manager, protected array $public_assets)
getUpdateObjective(?Setup\Config $config=null)
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
getArrayToConfigTransformation()
Agents must be able to tell how to create a configuration from a nested array.if Agent has no Config ...
getStatusObjective(Setup\Metrics\Storage $storage)
getBuildObjective()
Get the goal the agent wants to achieve to build artifacts.if Config does not match the Agent...
A agent is some component that performs part of the setup process.
Definition: Agent.php:29
getInstallObjective(?Setup\Config $config=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Storage is simple key/value store without further schema definition.
Definition: Storage.php:29
hasConfig()
Does this agent require a configuration?
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Will take care of the public assets, just like a good manager does.
A transformation is a function from one datatype to another.
A configuration for the setup.
Definition: Config.php:26