ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
ScaffoldFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 
30 {
32 
33  public function __construct(DataFactoryInterface $data_factory)
34  {
35  $this->data_factory = $data_factory;
36  }
37 
38  public function scaffold(DefinitionInterface $definition): ElementInterface
39  {
40  return new Element(
41  NoID::SCAFFOLD,
42  $definition,
43  $this->data_factory->null()
44  );
45  }
46 }
__construct(DataFactoryInterface $data_factory)