public ModulesUninstallForm::validateForm(array &$form, FormStateInterface $form_state)
Form validation 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 FormBase::validateForm
File
- core/modules/system/src/Form/ModulesUninstallForm.php, line 167
Class
- ModulesUninstallForm
- Provides a form for uninstalling modules.
Namespace
Drupal\system\Form
Code
1 2 3 4 5 6 7 | public function validateForm( array & $form , FormStateInterface $form_state ) { // Form submitted, but no modules selected. if (! array_filter ( $form_state ->getValue( 'uninstall' ))) { $form_state ->setErrorByName( 'uninstall' , $this ->t( 'No modules selected.' )); $form_state ->setRedirect( 'system.modules_uninstall' ); } } |
Please login to continue.