ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
Agent.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
21 namespace ILIAS\Setup;
22 
24 use ILIAS\UI;
25 
29 interface Agent
30 {
34  public function hasConfig(): bool;
35 
43 
52  public function getInstallObjective(Config $config = null): Objective;
53 
70  public function getUpdateObjective(Config $config = null): Objective;
71 
77  public function getBuildArtifactObjective(): Objective;
78 
89  public function getStatusObjective(Metrics\Storage $storage): Objective;
90 
98  public function getMigrations(): array;
99 
109  public function getNamedObjectives(?Config $config = null): array;
110 }
getStatusObjective(Metrics\Storage $storage)
Get the objective to be achieved when status is requested.
getArrayToConfigTransformation()
Agents must be able to tell how to create a configuration from a nested array.
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
getNamedObjectives(?Config $config=null)
Gets all named objectives The keys of the returned array are the commands.
getUpdateObjective(Config $config=null)
Get the goal the agent wants to achieve on update.
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:85
getBuildArtifactObjective()
Get the goal the agent wants to achieve to build artifacts.
getInstallObjective(Config $config=null)
Get the goals the agent wants to achieve on setup.
A agent is some component that performs part of the setup process.
Definition: Agent.php:29
hasConfig()
Does this agent require a configuration?
getMigrations()
Get a named map of migrations available for this Agent.
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.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A configuration for the setup.
Definition: Config.php:26