You are here

public function MenuLinkBase::getRouteName in Drupal 9

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

Returns the route name, if available.

Return value

string The name of the route this menu link links to.

Overrides MenuLinkInterface::getRouteName

1 call to MenuLinkBase::getRouteName()
MenuLinkBase::getUrlObject in core/lib/Drupal/Core/Menu/MenuLinkBase.php
Returns a URL object containing either the external path or route.
2 methods override MenuLinkBase::getRouteName()
DynamicMenuLinkMock::getRouteName in core/tests/Drupal/Tests/Core/Menu/DynamicMenuLinkMock.php
Returns the route name, if available.
LoginLogoutMenuLink::getRouteName in core/modules/user/src/Plugin/Menu/LoginLogoutMenuLink.php
Returns the route name, if available.

File

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

Class

MenuLinkBase
Defines a base menu link class.

Namespace

Drupal\Core\Menu

Code

public function getRouteName() {
  return isset($this->pluginDefinition['route_name']) ? $this->pluginDefinition['route_name'] : '';
}