ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ConsumerObjective.php
Go to the documentation of this file.
1 <?php
2 
20 
26 
28 {
29  public function getArtifactName(): string
30  {
31  return "legal_documents_consumer";
32  }
33 
34 
35  public function build(): Artifact
36  {
37  $finder = new ImplementationOfInterfaceFinder();
38  $classes = iterator_to_array($finder->getMatchingClassNames(Consumer::class));
39  $ids = array_map(fn($class) => (new $class())->id(), $classes);
40 
41  return new ArrayArtifact(array_combine($ids, $classes));
42  }
43 }
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...
Definition: Agent.php:21
An array as an artifact.
An artifact is some file that is build on demand per installation and is not shipped with the ILIAS s...
Definition: Artifact.php:27