You are here

public function SiteMaintenanceModeForm::submitForm in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/src/Form/SiteMaintenanceModeForm.php \Drupal\system\Form\SiteMaintenanceModeForm::submitForm()
  2. 9 core/modules/system/src/Form/SiteMaintenanceModeForm.php \Drupal\system\Form\SiteMaintenanceModeForm::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/SiteMaintenanceModeForm.php, line 100

Class

SiteMaintenanceModeForm
Configure maintenance settings for this site.

Namespace

Drupal\system\Form

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
  $this
    ->config('system.maintenance')
    ->set('message', $form_state
    ->getValue('maintenance_mode_message'))
    ->save();
  $this->state
    ->set('system.maintenance_mode', $form_state
    ->getValue('maintenance_mode'));
  parent::submitForm($form, $form_state);
}