ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilGlobalScreenBuildProviderMapObjective.php
Go to the documentation of this file.
1 <?php
2 
8 use ILIAS\Setup;
9 
15 class ilGlobalScreenBuildProviderMapObjective extends Setup\Artifact\BuildArtifactObjective
16 {
17  public function getArtifactPath() : string
18  {
19  return "Services/GlobalScreen/artifacts/global_screen_providers.php";
20  }
21 
22 
23  public function build() : Setup\Artifact
24  {
25  $class_names = [];
26  $i = [
27  StaticMainMenuProvider::class,
28  StaticMetaBarProvider::class,
29  DynamicToolProvider::class,
30  ModificationProvider::class,
31  NotificationProvider::class,
32  ];
33 
34  $finder = new Setup\ImplementationOfInterfaceFinder();
35  foreach ($i as $interface) {
36  $class_names[$interface] = iterator_to_array(
37  $finder->getMatchingClassNames($interface)
38  );
39  }
40 
41  return new Setup\Artifact\ArrayArtifact($class_names);
42  }
43 }
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
$i
Definition: metadata.php:24