public function MenuLinkBase::getDeleteRoute in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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 150 - Contains \Drupal\Core\Menu\MenuLinkBase.
Class
- MenuLinkBase
- Defines a base menu link class.
Namespace
Drupal\Core\MenuCode
public function getDeleteRoute() {
return NULL;
}