You are here

public function TermDeleteForm::getCancelUrl in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/taxonomy/src/Form/TermDeleteForm.php \Drupal\taxonomy\Form\TermDeleteForm::getCancelUrl()
  2. 9 core/modules/taxonomy/src/Form/TermDeleteForm.php \Drupal\taxonomy\Form\TermDeleteForm::getCancelUrl()

Returns the route to go to if the user cancels the action.

Return value

\Drupal\Core\Url A URL object.

Overrides ContentEntityDeleteForm::getCancelUrl

1 call to TermDeleteForm::getCancelUrl()
TermDeleteForm::getRedirectUrl in core/modules/taxonomy/src/Form/TermDeleteForm.php
Returns the URL where the user should be redirected after deletion.

File

core/modules/taxonomy/src/Form/TermDeleteForm.php, line 18

Class

TermDeleteForm
Provides a deletion confirmation form for taxonomy term.

Namespace

Drupal\taxonomy\Form

Code

public function getCancelUrl() {

  // The cancel URL is the vocabulary collection, terms have no global
  // list page.
  return new Url('entity.taxonomy_vocabulary.collection');
}