function MenuLinkBase::getRouteName

Same name and namespace in other branches
  1. 9 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()
  3. 11.x core/lib/Drupal/Core/Menu/MenuLinkBase.php \Drupal\Core\Menu\MenuLinkBase::getRouteName()

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'] : '';
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.