ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilResourceStorageSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 
33 {
35 
36  public function hasConfig(): bool
37  {
38  return false;
39  }
40 
42  {
43  throw new \LogicException("Agent has no config.");
44  }
45 
46  public function getInstallObjective(Config $config = null): Objective
47  {
48  return new ObjectiveCollection(
49  'IRSS Installation',
50  false,
54  )
55  );
56  }
57 
58  public function getUpdateObjective(Config $config = null): Objective
59  {
60  return new ObjectiveCollection(
61  'IRSS Update',
62  false,
66  )
67  );
68  }
69 
71  {
72  return new Objective\NullObjective();
73  }
74 
75  public function getStatusObjective(Metrics\Storage $storage): Objective
76  {
77  return new Objective\NullObjective();
78  }
79 
83  public function getMigrations(): array
84  {
85  return [new ilStorageHandlerV1Migration()];
86  }
87 }
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
hasConfig()
Does this agent require a configuration?
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...
A agent is some component that performs part of the setup process.
Definition: Agent.php:29
getUpdateObjective(Config $config=null)
Get the goal the agent wants to achieve on update.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilResourceStorageSetupAgent.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilStorageHandlerV1Migration.
getInstallObjective(Config $config=null)
Get the goals the agent wants to achieve on setup.
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
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.