You are here

public function MenuLinkContent::deleteLink in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/menu_link_content/src/Plugin/Menu/MenuLinkContent.php \Drupal\menu_link_content\Plugin\Menu\MenuLinkContent::deleteLink()

Deletes a menu link.

In general, this method should not be called directly, but will be called automatically from MenuLinkManagerInterface::removeDefinition().

This method will only delete the link from any additional storage, but not from the plugin.manager.menu.link service.

Throws

\Drupal\Component\Plugin\Exception\PluginException If the link is not deletable.

Overrides MenuLinkBase::deleteLink

File

core/modules/menu_link_content/src/Plugin/Menu/MenuLinkContent.php, line 245
Contains \Drupal\menu_link_content\Plugin\Menu\MenuLinkContent.

Class

MenuLinkContent
Provides the menu link plugin for content menu links.

Namespace

Drupal\menu_link_content\Plugin\Menu

Code

public function deleteLink() {
  $this
    ->getEntity()
    ->delete();
}