public function DeleteForm::getCancelUrl in Drupal 8
Same name in this branch
- 8 core/modules/comment/src/Form/DeleteForm.php \Drupal\comment\Form\DeleteForm::getCancelUrl()
- 8 core/modules/forum/src/Form/DeleteForm.php \Drupal\forum\Form\DeleteForm::getCancelUrl()
Same name and namespace in other branches
- 9 core/modules/forum/src/Form/DeleteForm.php \Drupal\forum\Form\DeleteForm::getCancelUrl()
- 10 core/modules/forum/src/Form/DeleteForm.php \Drupal\forum\Form\DeleteForm::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 DeleteForm::getCancelUrl()
- DeleteForm::submitForm in core/
modules/ forum/ src/ Form/ DeleteForm.php - Form submission handler.
File
- core/
modules/ forum/ src/ Form/ DeleteForm.php, line 41
Class
- DeleteForm
- Builds the form to delete a forum term.
Namespace
Drupal\forum\FormCode
public function getCancelUrl() {
return new Url('forum.overview');
}