public function ModulesListConfirmForm::getCancelUrl in Drupal 9
Same name and namespace in other branches
- 8 core/modules/system/src/Form/ModulesListConfirmForm.php \Drupal\system\Form\ModulesListConfirmForm::getCancelUrl()
Returns the route to go to if the user cancels the action.
Return value
\Drupal\Core\Url A URL object.
Overrides ConfirmFormInterface::getCancelUrl
1 call to ModulesListConfirmForm::getCancelUrl()
- ModulesListConfirmForm::submitForm in core/
modules/ system/ src/ Form/ ModulesListConfirmForm.php - Form submission handler.
File
- core/
modules/ system/ src/ Form/ ModulesListConfirmForm.php, line 87
Class
- ModulesListConfirmForm
- Builds a confirmation form for enabling modules with dependencies.
Namespace
Drupal\system\FormCode
public function getCancelUrl() {
return new Url('system.modules_list');
}