ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
HasDynamicInputs.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
28 interface HasDynamicInputs extends FormInput
29 {
34  public function getTemplateForDynamicInputs(): FormInput;
35 
41  public function getDynamicInputs(): array;
42 }
getTemplateForDynamicInputs()
Returns the instance of Field which should be used to generate dynamic inputs on clientside.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Checkbox.php:21
getDynamicInputs()
Returns serverside generated dynamic Inputs, which happens when providing this withValue() ...
This describes inputs that can be used in forms.
Definition: FormInput.php:32