ILIAS  trunk Revision v11.0_alpha-2645-g16283d3b3f8
class.ilECSAgent.php
Go to the documentation of this file.
1 <?php
2 
19 use ILIAS\Setup;
20 
21 class ilECSAgent extends Setup\Agent\NullAgent
22 {
23  public function getUpdateObjective(?\ILIAS\Setup\Config $config = null): \ILIAS\Setup\Objective
24  {
25  return new Setup\ObjectiveCollection(
26  "ECS",
27  true,
29  new ilECSDBUpdateSteps()
30  ),
32  new ilECSUpdateSteps8()
33  ),
35  new ilECSUpdateSteps9()
36  )
37  );
38  }
39 
40  public function getStatusObjective(\ILIAS\Setup\Metrics\Storage $storage): \ILIAS\Setup\Objective
41  {
42  return new Setup\ObjectiveCollection(
43  'Component WebServices',
44  true,
48  );
49  }
50 }
getUpdateObjective(?\ILIAS\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
Interface Observer Contains several chained tasks and infos about them.
getStatusObjective(\ILIAS\Setup\Metrics\Storage $storage)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class ilECSUpdateSteps9 contains update steps for release 9.
Storage is simple key/value store without further schema definition.
Definition: Storage.php:29
Class ilECSUpdateSteps8 contains update steps for release 8.
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...