ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilComponentsSetupAgent.php
Go to the documentation of this file.
1 <?php declare(strict_types=1);
2 
3 use \ILIAS\Setup;
4 use \ILIAS\UI;
5 use \ILIAS\Refinery\Transformation;
6 
7 class ilComponentsSetupAgent implements Setup\Agent
8 {
10 
14  public function hasConfig() : bool
15  {
16  return false;
17  }
18 
23  {
24  throw new \LogicException(self::class . " has no Config.");
25  }
26 
30  public function getInstallObjective(Setup\Config $config = null) : Setup\Objective
31  {
32  return new \ilComponentDefinitionsStoredObjective();
33  }
34 
38  public function getUpdateObjective(Setup\Config $config = null) : Setup\Objective
39  {
40  return new \ilComponentDefinitionsStoredObjective(false);
41  }
42 
46  public function getBuildArtifactObjective() : Setup\Objective
47  {
48  return new Setup\Objective\NullObjective();
49  }
50 
54  public function getStatusObjective(Setup\Metrics\Storage $storage) : Setup\Objective
55  {
56  return new Setup\Objective\NullObjective();
57  }
58 
62  public function getMigrations() : array
63  {
64  return [];
65  }
66 }
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:14
getStatusObjective(Setup\Metrics\Storage $storage)
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:68
getInstallObjective(Setup\Config $config=null)
getUpdateObjective(Setup\Config $config=null)
A transformation is a function from one datatype to another.
A configuration for the setup.
Definition: Config.php:10