ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilStyleSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2019 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4 
5 use ILIAS\Setup;
7 use ILIAS\Data;
8 use ILIAS\UI;
9 
10 class ilStyleSetupAgent implements Setup\Agent
11 {
13 
17  protected $refinery;
18 
19  public function __construct(
21  ) {
22  $this->refinery = $refinery;
23  }
24 
28  public function hasConfig(): bool
29  {
30  return true;
31  }
32 
37  {
38  return $this->refinery->custom()->transformation(function ($data) {
39  return new \ilStyleSetupConfig(
40  $data["manage_system_styles"] ?? false,
41  $data["path_to_lessc"] ?? null
42  );
43  });
44  }
45 
49  public function getInstallObjective(Setup\Config $config = null): Setup\Objective
50  {
52  }
53 
57  public function getUpdateObjective(Setup\Config $config = null): Setup\Objective
58  {
59  if ($config !== null) {
61  }
62  return new Setup\Objective\NullObjective();
63  }
64 
68  public function getBuildArtifactObjective(): Setup\Objective
69  {
71  }
72 
76  public function getStatusObjective(Setup\Metrics\Storage $storage): Setup\Objective
77  {
78  return new ilStyleMetricsCollectedObjective($storage);
79  }
80 
84  public function getMigrations(): array
85  {
86  return [];
87  }
88 }
getStatusObjective(Setup\Metrics\Storage $storage)
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
getInstallObjective(Setup\Config $config=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: ByTrying.php:21
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:85
__construct(Refinery\Factory $refinery)
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...
A configuration for the setup.
Definition: Config.php:26
getUpdateObjective(Setup\Config $config=null)