ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilCourseObjectiveSetupAgent.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 
53  {
54  return new Setup\Objective\NullObjective();
55  }
56 }
An agent that just doesn&#39;t do a thing.
Definition: NullAgent.php:34
getArrayToConfigTransformation()
Agents must be able to tell how to create a configuration from a nested array.
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
Class ChatMainBarProvider .
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:85
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getBuildArtifactObjective()
Get the goal the agent wants to achieve to build artifacts.
getUpdateObjective(ILIAS\Setup\Config $config=null)
getStatusObjective(Metrics\Storage $storage)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getInstallObjective(Config $config=null)
Get the goals the agent wants to achieve on setup.
A transformation is a function from one datatype to another.
A configuration for the setup.
Definition: Config.php:26