public function DeleteForm::getCancelUrl in Zircon Profile 8
Same name in this branch
- 8 core/modules/path/src/Form/DeleteForm.php \Drupal\path\Form\DeleteForm::getCancelUrl()
- 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
- 8.0 core/modules/path/src/Form/DeleteForm.php \Drupal\path\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
File
- core/
modules/ path/ src/ Form/ DeleteForm.php, line 71 - Contains \Drupal\path\Form\DeleteForm.
Class
- DeleteForm
- Builds the form to delete a path alias.
Namespace
Drupal\path\FormCode
public function getCancelUrl() {
return new Url('path.admin_overview');
}