ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilGlobalScreenSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
29 
31 {
33 
34  public function __construct(protected Refinery $refinery)
35  {
36  }
37 
41  public function hasConfig(): bool
42  {
43  return false;
44  }
45 
50  {
51  throw new LogicException(self::class . " has no Config.");
52  }
53 
57  public function getInstallObjective(?Config $config = null): Objective
58  {
59  return new NullObjective();
60  }
61 
65  public function getUpdateObjective(?Config $config = null): Objective
66  {
67  return new NullObjective();
68  }
69 
73  public function getBuildObjective(): Objective
74  {
76  }
77 
81  public function getStatusObjective(Storage $storage): Objective
82  {
83  return new NullObjective();
84  }
85 
89  public function getMigrations(): array
90  {
91  return [];
92  }
93 }
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
A non-objective, nothing to do to achieve it...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(protected Refinery $refinery)
A transformation is a function from one datatype to another.
A configuration for the setup.
Definition: Config.php:26