public function RouterRebuildConfirmForm::submitForm in Devel 8
Same name and namespace in other branches
- 8.3 src/Form/RouterRebuildConfirmForm.php \Drupal\devel\Form\RouterRebuildConfirmForm::submitForm()
- 8.2 src/Form/RouterRebuildConfirmForm.php \Drupal\devel\Form\RouterRebuildConfirmForm::submitForm()
- 4.x src/Form/RouterRebuildConfirmForm.php \Drupal\devel\Form\RouterRebuildConfirmForm::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/ RouterRebuildConfirmForm.php, line 80
Class
- RouterRebuildConfirmForm
- Provides confirmation form for rebuilding the routes.
Namespace
Drupal\devel\FormCode
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->routeBuilder
->rebuild();
drupal_set_message($this
->t('The router has been rebuilt.'));
$form_state
->setRedirect('<front>');
}