W3cubDocs

/Drupal 8

public function MenuLinkBase::getRouteParameters

public MenuLinkBase::getRouteParameters()

Returns the route parameters, if available.

Return value

array An array of parameter names and values.

Overrides MenuLinkInterface::getRouteParameters

File

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

Class

MenuLinkBase
Defines a base menu link class.

Namespace

Drupal\Core\Menu

Code

public function getRouteParameters() {
  return isset($this->pluginDefinition['route_parameters']) ? $this->pluginDefinition['route_parameters'] : array();
}

© 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::getRouteParameters/8.1.x