ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDataCollectionSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 use ILIAS\Setup;
27 
29 {
30  public function getUpdateObjective(?Config $config = null): Objective
31  {
33  }
34 
35  public function getMigrations(): array
36  {
37  return [
40  ];
41  }
42 
43  public function hasConfig(): bool
44  {
45  return false;
46  }
47 
49  {
50  throw new LogicException(self::class . " has no config.");
51  }
52 
53  public function getInstallObjective(?Config $config = null): Objective
54  {
55  return new NullObjective();
56  }
57 
59  {
60  return new NullObjective();
61  }
62 
63  public function getStatusObjective(Storage $storage): Objective
64  {
65  return new NullObjective();
66  }
67 
68  public function getNamedObjectives(?Config $config = null): array
69  {
70  return [];
71  }
72 
73  public function getBuildObjective(): Objective
74  {
75  return new NullObjective();
76  }
77 }
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
getArrayToConfigTransformation()
Agents must be able to tell how to create a configuration from a nested array.
hasConfig()
Does this agent require a configuration?
A agent is some component that performs part of the setup process.
Definition: Agent.php:29
A non-objective, nothing to do to achieve it...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getMigrations()
Get a named map of migrations available for this Agent.
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 configuration for the setup.
Definition: Config.php:26
getBuildObjective()
Get the goal the agent wants to achieve to build artifacts.