You are here

public function ImageToolkitForm::submitForm in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/src/Form/ImageToolkitForm.php \Drupal\system\Form\ImageToolkitForm::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 ConfigFormBase::submitForm

File

core/modules/system/src/Form/ImageToolkitForm.php, line 115

Class

ImageToolkitForm
Configures image toolkit settings for this site.

Namespace

Drupal\system\Form

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
  $this
    ->config('system.image')
    ->set('toolkit', $form_state
    ->getValue('image_toolkit'))
    ->save();

  // Call the form submit handler for each of the toolkits.
  foreach ($this->availableToolkits as $toolkit) {
    $toolkit
      ->submitConfigurationForm($form, $form_state);
  }
  parent::submitForm($form, $form_state);
}