ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilCourseSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 use ILIAS\Setup;
27 
29 {
31 
32  public function getUpdateObjective(?ILIAS\Setup\Config $config = null): Objective
33  {
35  }
36 
37  public function getStatusObjective(Metrics\Storage $storage): Objective
38  {
40  }
41 
43  {
44  throw new \LogicException("Agent has no config.");
45  }
46 
47  public function getInstallObjective(?Config $config = null): Objective
48  {
49  return new Setup\Objective\NullObjective();
50  }
51 
52  public function getBuildObjective(): Objective
53  {
54  return new Setup\Objective\NullObjective();
55  }
56 }
An agent that just doesn&#39;t do a thing.
Definition: NullAgent.php:34
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.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getStatusObjective(Metrics\Storage $storage)
getInstallObjective(?Config $config=null)
getUpdateObjective(?ILIAS\Setup\Config $config=null)
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