You are here

public function SystemStatusSettingsForm::submitForm in System Status 8.2

Same name and namespace in other branches
  1. 8 src/Form/SystemStatusSettingsForm.php \Drupal\system_status\Form\SystemStatusSettingsForm::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

src/Form/SystemStatusSettingsForm.php, line 59

Class

SystemStatusSettingsForm
Configure pants settings for this site.

Namespace

Drupal\system_status\Form

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
  $this
    ->config('system_status.settings')
    ->set('system_status_service_allow_external', $form_state
    ->getValue('system_status_service_allow_external'))
    ->save();
  parent::submitForm($form, $form_state);
}