public ListElement::__construct(TraversableTypedDataInterface $element)
Constructs a ListElement.
Parameters
\Drupal\Core\TypedData\TraversableTypedDataInterface $element: The schema element this form element is for.
File
- core/modules/config_translation/src/FormElement/ListElement.php, line 34
Class
- ListElement
- Defines the list element for the configuration translation interface.
Namespace
Drupal\config_translation\FormElement
Code
public function __construct(TraversableTypedDataInterface $element) { $this->element = $element; }
Please login to continue.