ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilSystemFolderSetupAgent.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 ilSystemFolderSetupAgent implements Setup\Agent
11 {
15  protected $refinery;
16 
17  public function __construct(
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 \ilSystemFolderSetupConfig(
46  $data["client"]["name"],
47  $data["client"]["description"] ?? null,
48  $data["client"]["institution"] ?? null,
49  $data["contact"]["firstname"],
50  $data["contact"]["lastname"],
51  $data["contact"]["title"] ?? null,
52  $data["contact"]["position"] ?? null,
53  $data["contact"]["institution"] ?? null,
54  $data["contact"]["street"] ?? null,
55  $data["contact"]["zipcode"] ?? null,
56  $data["contact"]["city"] ?? null,
57  $data["contact"]["country"] ?? null,
58  $data["contact"]["phone"] ?? null,
59  $data["contact"]["email"],
60  );
61  });
62  }
63 
67  public function getInstallObjective(Setup\Config $config = null) : Setup\Objective
68  {
69  return new Setup\ObjectiveCollection(
70  "Complete objectives from Modules/SystemFolder",
71  false,
73  );
74  }
75 
79  public function getUpdateObjective(Setup\Config $config = null) : Setup\Objective
80  {
81  return new Setup\NullObjective();
82  }
83 
87  public function getBuildArtifactObjective() : Setup\Objective
88  {
89  return new Setup\NullObjective();
90  }
91 }
getUpdateObjective(Setup\Config $config=null)
Class Factory.
$data
Definition: storeScorm.php:23
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:14
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:68
getInstallObjective(Setup\Config $config=null)
getConfigInput(Setup\Config $config=null)
Builds data types.
Definition: Factory.php:19
A transformation is a function from one datatype to another.
Store information about the installation, like title, description and contact information in the acco...
A configuration for the setup.
Definition: Config.php:10
__construct(Refinery\Factory $refinery)