ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BuildExportOptionsMapObjective.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Export\Setup;
22 
27 use ILIAS\Export\ExportHandler\I\Consumer\ExportOption\HandlerInterface as ilExportHandlerConsumerExportOptionInterface;
28 
30 {
31  public function getArtifactName(): string
32  {
33  return "export_options";
34  }
35 
36  public function build(): ilSetupArtifact
37  {
38  $class_names = [];
39  $interface = ilExportHandlerConsumerExportOptionInterface::class;
41  return new ilSetupArrayArtifact(iterator_to_array(
42  $finder->getMatchingClassNames($interface)
43  ));
44  }
45 }