You are here

protected function MenuLinkContentDeleteForm::getRedirectUrl in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/menu_link_content/src/Form/MenuLinkContentDeleteForm.php \Drupal\menu_link_content\Form\MenuLinkContentDeleteForm::getRedirectUrl()
  2. 9 core/modules/menu_link_content/src/Form/MenuLinkContentDeleteForm.php \Drupal\menu_link_content\Form\MenuLinkContentDeleteForm::getRedirectUrl()

Returns the URL where the user should be redirected after deletion.

Return value

\Drupal\Core\Url The redirect URL.

Overrides EntityDeleteFormTrait::getRedirectUrl

File

core/modules/menu_link_content/src/Form/MenuLinkContentDeleteForm.php, line 28

Class

MenuLinkContentDeleteForm
Provides a delete form for content menu links.

Namespace

Drupal\menu_link_content\Form

Code

protected function getRedirectUrl() {
  return $this
    ->getCancelUrl();
}