ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilCtrlStructureArtifactObjective.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /* Copyright (c) 2021 Thibeau Fuhrer <thf@studer-raimann.ch> Extended GPL, see docs/LICENSE */
6 
10 
18 {
22  public const ARTIFACT_PATH = "./Services/UICore/artifacts/ctrl_structure.php";
23 
27  public function getArtifactPath(): string
28  {
29  return self::ARTIFACT_PATH;
30  }
31 
35  public function build(): Artifact
36  {
37  $ilias_path = dirname(__FILE__, 6);
38  $class_map = require $ilias_path . "/libs/composer/vendor/composer/autoload_classmap.php";
39 
40  return new ArrayArtifact(
42  new ilCtrlArrayIterator($class_map),
44  ))->readStructure()
45  );
46  }
47 }
This is an objective to build some artifact.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilCtrlStructureCidGenerator.
Class ilCtrlStructureReader is responsible for reading ilCtrl&#39;s control structure.
An array as an artifact.
Class ilCtrlArrayIterator.
Class ilCtrlStructureArtifactObjective.
An artifact is some file that is build on demand per installation and is not shipped with the ILIAS s...
Definition: Artifact.php:27