You are here

public function MenuLinkBase::isDeletable in Drupal 9

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

Returns whether this link can be deleted.

Return value

bool TRUE if the link can be deleted, FALSE otherwise.

Overrides MenuLinkInterface::isDeletable

2 methods override MenuLinkBase::isDeletable()
MenuLinkContent::isDeletable in core/modules/menu_link_content/src/Plugin/Menu/MenuLinkContent.php
Returns whether this link can be deleted.
ViewsMenuLink::isDeletable in core/modules/views/src/Plugin/Menu/ViewsMenuLink.php
Returns whether this link can be deleted.

File

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

Class

MenuLinkBase
Defines a base menu link class.

Namespace

Drupal\Core\Menu

Code

public function isDeletable() {
  return (bool) $this
    ->getDeleteRoute();
}