You are here

public function ContextualLinkDefault::getRouteName in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Menu/ContextualLinkDefault.php \Drupal\Core\Menu\ContextualLinkDefault::getRouteName()

Returns the route name of the contextual link.

Return value

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

Overrides ContextualLinkInterface::getRouteName

File

core/lib/Drupal/Core/Menu/ContextualLinkDefault.php, line 24

Class

ContextualLinkDefault
Provides a common base implementation of a contextual link.

Namespace

Drupal\Core\Menu

Code

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