public function ConfigDeleteConfirmForm::getCancelUrl in Configuration Update Manager 8
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 ConfigDeleteConfirmForm::getCancelUrl()
- ConfigDeleteConfirmForm::submitForm in config_update_ui/
src/ Form/ ConfigDeleteConfirmForm.php - Form submission handler.
File
- config_update_ui/
src/ Form/ ConfigDeleteConfirmForm.php, line 105
Class
- ConfigDeleteConfirmForm
- Defines a confirmation form for deleting configuration.
Namespace
Drupal\config_update_ui\FormCode
public function getCancelUrl() {
return new Url('config_update_ui.report');
}