public function MenuLinkBase::getRouteName

public MenuLinkBase::getRouteName()

Returns the route name, if available.

Return value

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

Overrides MenuLinkInterface::getRouteName

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Menu!MenuLinkBase.php/function/MenuLinkBase::getRouteName/8.1.x