ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilLoggingSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 use ILIAS\Setup;
28 use ILIAS\UI;
29 
30 class ilLoggingSetupAgent implements Setup\Agent
31 {
33 
34  protected Factory $refinery;
35 
36  public function __construct(Factory $refinery)
37  {
38  $this->refinery = $refinery;
39  }
40 
44  public function hasConfig(): bool
45  {
46  return true;
47  }
48 
53  {
54  return $this->refinery->custom()->transformation(function ($data) {
55  return new \ilLoggingSetupConfig(
56  $data["enable"] ?? false,
57  $data["path_to_logfile"] ?? null,
58  $data["errorlog_dir"] ?? null
59  );
60  });
61  }
62 
66  public function getInstallObjective(Config $config = null): Objective
67  {
69  }
70 
74  public function getUpdateObjective(Config $config = null): Objective
75  {
76  $objective = new Setup\Objective\NullObjective();
77  if ($config !== null) {
78  $objective = new ilLoggingConfigStoredObjective($config);
79  }
81  'Update of Services/Logging',
82  false,
83  $objective,
86  )
87  );
88  }
89 
94  {
95  return new Setup\Objective\NullObjective();
96  }
97 
101  public function getStatusObjective(Storage $storage): Objective
102  {
103  return new ilLoggingMetricsCollectedObjective($storage);
104  }
105 
109  public function getMigrations(): array
110  {
111  return [];
112  }
113 }
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
getUpdateObjective(Config $config=null)
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:85
__construct(Factory $refinery)
getStatusObjective(Storage $storage)
getInstallObjective(Config $config=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A configuration for the setup.
Definition: Config.php:26