public function LocalTaskDefault::getRouteName in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Menu/LocalTaskDefault.php \Drupal\Core\Menu\LocalTaskDefault::getRouteName()
- 10 core/lib/Drupal/Core/Menu/LocalTaskDefault.php \Drupal\Core\Menu\LocalTaskDefault::getRouteName()
Get the route name from the settings.
Return value
string The name of the route this local task links to.
Overrides LocalTaskInterface::getRouteName
1 call to LocalTaskDefault::getRouteName()
- LocalTaskDefault::getRouteParameters in core/
lib/ Drupal/ Core/ Menu/ LocalTaskDefault.php - Returns the route parameters needed to render a link for the local task.
File
- core/
lib/ Drupal/ Core/ Menu/ LocalTaskDefault.php, line 36
Class
- LocalTaskDefault
- Default object used for LocalTaskPlugins.
Namespace
Drupal\Core\MenuCode
public function getRouteName() {
return $this->pluginDefinition['route_name'];
}