ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilResourceStorageSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 
34 {
36 
37  public function hasConfig(): bool
38  {
39  return false;
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 ObjectiveCollection(
50  'IRSS Installation',
51  false,
55  )
56  );
57  }
58 
59  public function getUpdateObjective(?Config $config = null): Objective
60  {
61  return new ObjectiveCollection(
62  'IRSS Update',
63  false,
67  ),
70  )
71  );
72  }
73 
74  public function getBuildObjective(): Objective
75  {
77  }
78 
79  public function getStatusObjective(Storage $storage): Objective
80  {
81  return new ObjectiveCollection(
82  'Component ResourceStorage',
83  true,
86  );
87  }
88 
92  public function getMigrations(): array
93  {
94  return [];
95  }
96 }
A objective collection is a objective that is achieved once all subobjectives are achieved...
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
Class ilResourceStorageDB90.
hasConfig()
Does this agent require a configuration?
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class ilResourceStorageSetupAgent.
getBuildObjective()
Get the goal the agent wants to achieve to build artifacts.
A transformation is a function from one datatype to another.
getArrayToConfigTransformation()
Agents must be able to tell how to create a configuration from a nested array.
A configuration for the setup.
Definition: Config.php:26