You are here

public function MenuLinkResetForm::getCancelUrl in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/menu_ui/src/Form/MenuLinkResetForm.php \Drupal\menu_ui\Form\MenuLinkResetForm::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 MenuLinkResetForm::getCancelUrl()
MenuLinkResetForm::submitForm in core/modules/menu_ui/src/Form/MenuLinkResetForm.php
Form submission handler.

File

core/modules/menu_ui/src/Form/MenuLinkResetForm.php, line 73
Contains \Drupal\menu_ui\Form\MenuLinkResetForm.

Class

MenuLinkResetForm
Defines a confirmation form for resetting a single modified menu link.

Namespace

Drupal\menu_ui\Form

Code

public function getCancelUrl() {
  return new Url('entity.menu.edit_form', array(
    'menu' => $this->link
      ->getMenuName(),
  ));
}