ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilLanguageSetupAgent.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\UI;
8 
9 class ilLanguageSetupAgent implements Setup\Agent
10 {
14  protected $refinery;
15 
19  protected $il_setup_language;
20 
21  public function __construct(
23  $_, // this is Data\Factory, but we do not need it...
25  ) {
26  $this->refinery = $refinery;
27  $this->il_setup_language = $il_setup_language;
28  }
29 
33  public function hasConfig() : bool
34  {
35  return true;
36  }
37 
41  public function getConfigInput(Setup\Config $config = null) : UI\Component\Input\Field\Input
42  {
43  throw new \LogicException("Not yet implemented.");
44  }
45 
50  {
51  return $this->refinery->custom()->transformation(function ($data) {
52  if (!isset($data["default_language"])) {
53  $data["default_language"] = "en";
54  }
55  return new \ilLanguageSetupConfig(
56  $data["default_language"],
57  $data["install_languages"] ?? [$data["default_language"]],
58  $data["install_local_languages"] ?? []
59  );
60  });
61  }
62 
66  public function getInstallObjective(Setup\Config $config = null) : Setup\Objective
67  {
68  return new Setup\ObjectiveCollection(
69  "Complete objectives from Services/Language",
70  false,
72  new ilLanguagesInstalledObjective($config, $this->il_setup_language),
74  );
75  }
76 
80  public function getUpdateObjective(Setup\Config $config = null) : Setup\Objective
81  {
82  return new Setup\NullObjective();
83  }
84 
88  public function getBuildArtifactObjective() : Setup\Objective
89  {
90  return new Setup\NullObjective();
91  }
92 }
getConfigInput(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
getInstallObjective(Setup\Config $config=null)
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:68
language handling for setup
Builds data types.
Definition: Factory.php:19
__construct(Refinery\Factory $refinery, $_, \ilSetupLanguage $il_setup_language)
A transformation is a function from one datatype to another.
A configuration for the setup.
Definition: Config.php:10
getUpdateObjective(Setup\Config $config=null)