public function UpdateConfigurationForm::submitForm in Config Direct Save 8
Same name and namespace in other branches
- 8.2 src/Form/UpdateConfigurationForm.php \Drupal\config_direct_save\Form\UpdateConfigurationForm::submitForm()
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
- src/
Form/ UpdateConfigurationForm.php, line 110
Class
- UpdateConfigurationForm
- Provide the settings form for updating configurations.
Namespace
Drupal\config_direct_save\FormCode
public function submitForm(array &$form, FormStateInterface $form_state) {
// Create config files.
$this
->createConfigFiles($form, $form_state);
}