ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilKitchenSinkDataCollectedObjective.php
Go to the documentation of this file.
1 <?php declare(strict_types=1);
2 
3 use ILIAS\Setup;
5 
6 class ilKitchenSinkDataCollectedObjective extends Setup\BuildArtifactObjective
7 {
8  public function __construct()
9  {
13  }
14 
15  public function getArtifactPath() : string
16  {
17  return $this->data_path;
18  }
19 
20  public function build() : Setup\Artifact
21  {
22  $crawler = new Crawler\FactoriesCrawler();
23  return new Setup\ArrayArtifact($crawler->crawlFactory($this->crawler_path)->jsonSerialize());
24  }
25 }
An artifact is some file that is build on demand per installation and is not shipped with the ILIAS s...
Definition: Artifact.php:11