ILIAS  trunk Revision v11.0_alpha-1713-gd8962da2f67
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilLearningModuleSetupAgent Class Reference
+ Inheritance diagram for ilLearningModuleSetupAgent:
+ Collaboration diagram for ilLearningModuleSetupAgent:

Public Member Functions

 hasConfig ()
 Does this agent require a configuration? More...
 
 getArrayToConfigTransformation ()
 Agents must be able to tell how to create a configuration from a nested array.
Exceptions
LogicExceptionif Agent has no Config
More...
 
 getInstallObjective (?Setup\Config $config=null)
 
 getUpdateObjective (?Setup\Config $config=null)
 
 getBuildObjective ()
 Get the goal the agent wants to achieve to build artifacts.
Exceptions
InvalidArgumentExceptionif Config does not match the Agent.
More...
 
 getStatusObjective (Setup\Metrics\Storage $storage)
 
 getMigrations ()
 
- Public Member Functions inherited from ILIAS\Setup\Agent
 getInstallObjective (?Config $config=null)
 Get the goals the agent wants to achieve on setup. More...
 
 getUpdateObjective (?Config $config=null)
 Get the goal the agent wants to achieve on update. More...
 
 getStatusObjective (Metrics\Storage $storage)
 Get the objective to be achieved when status is requested. More...
 
 getNamedObjectives (?Config $config=null)
 Gets all named objectives The keys of the returned array are the commands. More...
 

Detailed Description

Member Function Documentation

◆ getArrayToConfigTransformation()

ilLearningModuleSetupAgent::getArrayToConfigTransformation ( )

Agents must be able to tell how to create a configuration from a nested array.

Exceptions
LogicExceptionif Agent has no Config

Implements ILIAS\Setup\Agent.

Definition at line 41 of file class.ilLearningModuleSetupAgent.php.

41  : Refinery\Transformation
42  {
43  throw new \LogicException("Agent has no config.");
44  }

◆ getBuildObjective()

ilLearningModuleSetupAgent::getBuildObjective ( )

Get the goal the agent wants to achieve to build artifacts.

Exceptions
InvalidArgumentExceptionif Config does not match the Agent.

Implements ILIAS\Setup\Agent.

Definition at line 68 of file class.ilLearningModuleSetupAgent.php.

68  : Setup\Objective
69  {
70  return new Setup\Objective\NullObjective();
71  }

◆ getInstallObjective()

◆ getMigrations()

ilLearningModuleSetupAgent::getMigrations ( )

Implements ILIAS\Setup\Agent.

Definition at line 84 of file class.ilLearningModuleSetupAgent.php.

84  : array
85  {
86  return [];
87  }

◆ getStatusObjective()

ilLearningModuleSetupAgent::getStatusObjective ( Setup\Metrics\Storage  $storage)

Definition at line 76 of file class.ilLearningModuleSetupAgent.php.

76  : Setup\Objective
77  {
78  return new Setup\Objective\NullObjective();
79  }

◆ getUpdateObjective()

ilLearningModuleSetupAgent::getUpdateObjective ( ?Setup\Config  $config = null)

Definition at line 60 of file class.ilLearningModuleSetupAgent.php.

60  : Setup\Objective
61  {
62  return new Setup\Objective\NullObjective();
63  }

◆ hasConfig()

ilLearningModuleSetupAgent::hasConfig ( )

Does this agent require a configuration?

Implements ILIAS\Setup\Agent.

Definition at line 33 of file class.ilLearningModuleSetupAgent.php.

33  : bool
34  {
35  return false;
36  }

The documentation for this class was generated from the following file: