ILIAS  release_7 Revision v7.30-3-g800a261c036
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\Artifact\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\Artifact\ArrayArtifact($crawler->crawlFactory($this->crawler_path)->jsonSerialize());
24  }
25 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
An artifact is some file that is build on demand per installation and is not shipped with the ILIAS s...
Definition: Artifact.php:11