ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilEventHandlingSetupAgent.php
Go to the documentation of this file.
1<?php
2
19use ILIAS\Setup;
21
23{
24 use Setup\Agent\HasNoNamedObjective;
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 {
56 "Updates of Services/EventHandling",
57 false,
60 ),
62 );
63 }
64
69 {
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}
A objective collection is a objective that is achieved once all subobjectives are achieved.
This class attempt to achieve a set of database update steps.
getInstallObjective(?Setup\Config $config=null)
@inheritDoc
getStatusObjective(Setup\Metrics\Storage $storage)
@inheritDoc
getUpdateObjective(?Setup\Config $config=null)
@inheritDoc
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 agent is some component that performs part of the setup process.
Definition: Agent.php:30
A configuration for the setup.
Definition: Config.php:27
An objective is a desired state of the system that is supposed to be created by the setup.
Definition: Objective.php:31
Storage is simple key/value store without further schema definition.
Definition: Storage.php:30
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...