function RevertOverridesForm::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
- 
              core/modules/ layout_builder/ src/ Form/ RevertOverridesForm.php, line 113 
Class
- RevertOverridesForm
- Reverts the overridden layout to the defaults.
Namespace
Drupal\layout_builder\FormCode
public function submitForm(array &$form, FormStateInterface $form_state) {
  // Remove all sections.
  $this->sectionStorage
    ->removeAllSections()
    ->save();
  $this->layoutTempstoreRepository
    ->delete($this->sectionStorage);
  $this->messenger
    ->addMessage($this->t('The layout has been reverted back to defaults.'));
  $form_state->setRedirectUrl($this->sectionStorage
    ->getRedirectUrl());
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
