ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
ArrayArtifact.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 namespace ILIAS\Setup;
6 
10 class ArrayArtifact implements Artifact
11 {
15  private $data = [];
16 
20  public function __construct(array $data)
21  {
22  $this->check($data);
23  $this->data = $data;
24  }
25 
26 
27  final public function serialize() : string
28  {
29  return "<?" . "php return " . var_export($this->data, true) . ";";
30  }
31 
32  private function check(array $a)
33  {
34  foreach ($a as $item) {
35  if (is_string($item) || is_int($item) || is_float($item) || is_bool($item) || is_null($item)) {
36  continue;
37  }
38  if (is_array($item)) {
39  $this->check($item);
40  continue;
41  }
42  throw new \InvalidArgumentException(
43  "Array data for artifact may only contain ints, strings, floats, bools or " .
44  "other arrays with this content. Found: " . gettype($item)
45  );
46  }
47  }
48 }
An array as an artifact.
serialize()
This method will be called from the source, which wants to save the artifact.
An artifact is some file that is build on demand per installation and is not shipped with the ILIAS s...
Definition: Artifact.php:11
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples