You are here

public function MenuLinkBase::getDeleteRoute in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Menu/MenuLinkBase.php \Drupal\Core\Menu\MenuLinkBase::getDeleteRoute()

Returns route information for a route to delete the menu link.

Return value

\Drupal\Core\Url|null A Url object, or NULL if there is no route (e.g. when the link is not deletable).

Overrides MenuLinkInterface::getDeleteRoute

1 call to MenuLinkBase::getDeleteRoute()
MenuLinkBase::isDeletable in core/lib/Drupal/Core/Menu/MenuLinkBase.php
Returns whether this link can be deleted.
1 method overrides MenuLinkBase::getDeleteRoute()
MenuLinkContent::getDeleteRoute in core/modules/menu_link_content/src/Plugin/Menu/MenuLinkContent.php
Returns route information for a route to delete the menu link.

File

core/lib/Drupal/Core/Menu/MenuLinkBase.php, line 145

Class

MenuLinkBase
Defines a base menu link class.

Namespace

Drupal\Core\Menu

Code

public function getDeleteRoute() {
  return NULL;
}