ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLoggingSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 use ILIAS\Setup;
27 use ILIAS\UI;
28 
30 {
32 
33  protected Factory $refinery;
34 
35  public function __construct(Factory $refinery)
36  {
37  $this->refinery = $refinery;
38  }
39 
43  public function hasConfig(): bool
44  {
45  return true;
46  }
47 
52  {
53  return $this->refinery->custom()->transformation(function ($data) {
54  return new \ilLoggingSetupConfig(
55  $data["enable"] ?? false,
56  $data["path_to_logfile"] ?? null,
57  $data["errorlog_dir"] ?? null
58  );
59  });
60  }
61 
65  public function getInstallObjective(?Config $config = null): Objective
66  {
67  return new ilLoggingConfigStoredObjective($config);
68  }
69 
73  public function getUpdateObjective(?Config $config = null): Objective
74  {
75  $objective = new Setup\Objective\NullObjective();
76  if ($config !== null) {
77  $objective = new ilLoggingConfigStoredObjective($config);
78  }
80  'Update of Services/Logging',
81  false,
82  $objective,
85  )
86  );
87  }
88 
92  public function getBuildObjective(): Objective
93  {
94  return new Setup\Objective\NullObjective();
95  }
96 
100  public function getStatusObjective(Storage $storage): Objective
101  {
102  return new Setup\ObjectiveCollection(
103  'Component Logging',
104  true,
107  );
108  }
109 
113  public function getMigrations(): array
114  {
115  return [];
116  }
117 }
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
getInstallObjective(?Config $config=null)
getArrayToConfigTransformation()
Agents must be able to tell how to create a configuration from a nested array.if Agent has no Config ...
A agent is some component that performs part of the setup process.
Definition: Agent.php:29
__construct(Factory $refinery)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
hasConfig()
Does this agent require a configuration?
getStatusObjective(Storage $storage)
Builds data types.
Definition: Factory.php:35
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.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilLoggingUpdateSteps8 contains update steps for release 8.
getBuildObjective()
Get the goal the agent wants to achieve to build artifacts.if Config does not match the Agent...
A configuration for the setup.
Definition: Config.php:26
getUpdateObjective(?Config $config=null)