ILIAS  trunk Revision v11.0_alpha-1843-g9e1fad99175
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ScaffoldableInterface.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
27 {
34  public function addScaffoldsToSubElements(
35  ScaffoldProviderInterface $scaffold_provider
36  ): void;
37 
45  public function addScaffoldToSubElements(
46  ScaffoldProviderInterface $scaffold_provider,
47  string $name
48  ): ?ElementInterface;
49 }
addScaffoldsToSubElements(ScaffoldProviderInterface $scaffold_provider)
Scaffolds are used to mark where elements could potentially be created.
addScaffoldToSubElements(ScaffoldProviderInterface $scaffold_provider, string $name)
If possible, adds a scaffold with the given name to this element&#39;s sub-elements, and returns it...