function ContentEntityDeleteForm::getCancelUrl

Same name in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/ContentEntityDeleteForm.php \Drupal\Core\Entity\ContentEntityDeleteForm::getCancelUrl()
  2. 10 core/lib/Drupal/Core/Entity/ContentEntityDeleteForm.php \Drupal\Core\Entity\ContentEntityDeleteForm::getCancelUrl()
  3. 11.x core/lib/Drupal/Core/Entity/ContentEntityDeleteForm.php \Drupal\Core\Entity\ContentEntityDeleteForm::getCancelUrl()

Overrides ConfirmFormInterface::getCancelUrl

6 methods override ContentEntityDeleteForm::getCancelUrl()
DeleteForm::getCancelUrl in core/modules/comment/src/Form/DeleteForm.php
Returns the route to go to if the user cancels the action.
EntityTestDeleteForm::getCancelUrl in core/modules/system/tests/modules/entity_test/src/EntityTestDeleteForm.php
Returns the route to go to if the user cancels the action.
FeedDeleteForm::getCancelUrl in core/modules/aggregator/src/Form/FeedDeleteForm.php
Returns the route to go to if the user cancels the action.
MenuLinkContentDeleteForm::getCancelUrl in core/modules/menu_link_content/src/Form/MenuLinkContentDeleteForm.php
Returns the route to go to if the user cancels the action.
ShortcutDeleteForm::getCancelUrl in core/modules/shortcut/src/Form/ShortcutDeleteForm.php
Returns the route to go to if the user cancels the action.

... See full list

File

core/lib/Drupal/Core/Entity/ContentEntityDeleteForm.php, line 82

Class

ContentEntityDeleteForm
Provides a generic base class for a content entity deletion form.

Namespace

Drupal\Core\Entity

Code

public function getCancelUrl() {
    
    /** @var \Drupal\Core\Entity\ContentEntityInterface $entity */
    $entity = $this->getEntity();
    return $entity->isDefaultTranslation() ? $this->traitGetCancelUrl() : $entity->toUrl('canonical');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.