You are here

public function YamlFormUiElementTypeFormBase::submitForm in YAML Form 8

Form submission handler.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Overrides FormInterface::submitForm

File

modules/yamlform_ui/src/Form/YamlFormUiElementTypeFormBase.php, line 44

Class

YamlFormUiElementTypeFormBase
Provides a abstract element type form for a form element.

Namespace

Drupal\yamlform_ui\Form

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
  return parent::submitForm($form, $form_state);
}