ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilEventHandlingSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
19 use ILIAS\Setup;
21 
23 {
25 
29  public function hasConfig(): bool
30  {
31  return false;
32  }
33 
38  {
39  throw new LogicException(self::class . " has no Config.");
40  }
41 
45  public function getInstallObjective(?Setup\Config $config = null): Setup\Objective
46  {
48  }
49 
53  public function getUpdateObjective(?Setup\Config $config = null): Setup\Objective
54  {
55  return new Setup\ObjectiveCollection(
56  "Updates of Services/EventHandling",
57  false,
60  ),
62  );
63  }
64 
68  public function getBuildObjective(): Setup\Objective
69  {
70  return new Setup\ObjectiveCollection(
71  "Artifacts for Services/EventHandling",
72  false,
74  );
75  }
76 
80  public function getStatusObjective(Setup\Metrics\Storage $storage): Setup\Objective
81  {
83  }
84 
88  public function getMigrations(): array
89  {
90  return [];
91  }
92 }
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
getStatusObjective(Setup\Metrics\Storage $storage)
getUpdateObjective(?Setup\Config $config=null)
A agent is some component that performs part of the setup process.
Definition: Agent.php:29
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Storage is simple key/value store without further schema definition.
Definition: Storage.php:29
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.
getInstallObjective(?Setup\Config $config=null)
A configuration for the setup.
Definition: Config.php:26