public function ModulesUninstallConfirmForm::submitForm in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/system/src/Form/ModulesUninstallConfirmForm.php \Drupal\system\Form\ModulesUninstallConfirmForm::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/ system/ src/ Form/ ModulesUninstallConfirmForm.php, line 159 - Contains \Drupal\system\Form\ModulesUninstallConfirmForm.
Class
- ModulesUninstallConfirmForm
- Builds a confirmation form to uninstall selected modules.
Namespace
Drupal\system\FormCode
public function submitForm(array &$form, FormStateInterface $form_state) {
// Clear the key value store entry.
$account = $this
->currentUser()
->id();
$this->keyValueExpirable
->delete($account);
// Uninstall the modules.
$this->moduleInstaller
->uninstall($this->modules);
drupal_set_message($this
->t('The selected modules have been uninstalled.'));
$form_state
->setRedirectUrl($this
->getCancelUrl());
}