You are here

public function ModulesUninstallForm::validateForm in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/src/Form/ModulesUninstallForm.php \Drupal\system\Form\ModulesUninstallForm::validateForm()
  2. 10 core/modules/system/src/Form/ModulesUninstallForm.php \Drupal\system\Form\ModulesUninstallForm::validateForm()

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 177

Class

ModulesUninstallForm
Provides a form for uninstalling modules.

Namespace

Drupal\system\Form

Code

public function validateForm(array &$form, FormStateInterface $form_state) {

  // Form submitted, but no modules selected.
  if (!array_filter($form_state
    ->getValue('uninstall'))) {
    $form_state
      ->setErrorByName('', $this
      ->t('No modules selected.'));
    $form_state
      ->setRedirect('system.modules_uninstall');
  }
}