ILIAS  release_7 Revision v7.30-3-g800a261c036
class.ilPrivacySecuritySetupAgent.php
Go to the documentation of this file.
1<?php declare(strict_types=1);
2
3/* Copyright (c) 2020 Daniel Weise <daniel.weise@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4
7use ILIAS\UI;
8
10{
11 use Setup\Agent\HasNoNamedObjective;
12
16 protected $refinery;
17
18 public function __construct(Refinery\Factory $refinery)
19 {
20 $this->refinery = $refinery;
21 }
22
26 public function hasConfig() : bool
27 {
28 return true;
29 }
30
34 public function getConfigInput(Setup\Config $config = null) : UI\Component\Input\Field\Input
35 {
36 throw new \LogicException("Not yet implemented.");
37 }
38
43 {
44 return $this->refinery->custom()->transformation(function ($data) {
45 return new \ilPrivacySecuritySetupConfig(
46 (bool) ($data["https_enabled"] ?? false)
47 );
48 });
49 }
50
54 public function getInstallObjective(Setup\Config $config = null) : Setup\Objective
55 {
57 "Complete objectives from Services/PrivacySecurity",
58 false,
60 );
61 }
62
66 public function getUpdateObjective(Setup\Config $config = null) : Setup\Objective
67 {
69 }
70
74 public function getBuildArtifactObjective() : Setup\Objective
75 {
77 }
78
82 public function getStatusObjective(Setup\Metrics\Storage $storage) : Setup\Objective
83 {
85 }
86
90 public function getMigrations() : array
91 {
92 return [];
93 }
94}
An exception for terminatinating execution or to throw for unit testing.
Builds data types.
Definition: Factory.php:20
A objective collection is a objective that is achieved once all subobjectives are achieved.
A non-objective, nothing to do to achieve it...
getInstallObjective(Setup\Config $config=null)
getStatusObjective(Setup\Metrics\Storage $storage)
A transformation is a function from one datatype to another.
A agent is some component that performs part of the setup process.
Definition: Agent.php:14
A configuration for the setup.
Definition: Config.php:11
An objective is a desired state of the system that is supposed to be created by the setup.
Definition: Objective.php:15
A component is the most general form of an entity in the UI.
Definition: Component.php:14
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:68
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class Factory.
$data
Definition: storeScorm.php:23