public function ContextualLinkManagerInterface::getContextualLinksArrayByGroup

public ContextualLinkManagerInterface::getContextualLinksArrayByGroup($group_name, array $route_parameters, array $metadata = array())

Gets the contextual links prepared as expected by links.html.twig.

Parameters

string $group_name: The group name.

array $route_parameters: The incoming route parameters. The route parameters need to have the same name on all contextual link routes, e.g. you cannot use 'node' and 'entity' in parallel.

array $metadata: Additional metadata of contextual links, like the position (optional).

Return value

array An array of link information, keyed by the plugin ID. Each entry is an associative array with the following keys:

  • route_name: The route name to link to.
  • route_parameters: The route parameters for the contextual link.
  • title: The title of the contextual link.
  • weight: The weight of the contextual link.
  • localized_options: The options of the link, which will be passed to the link generator.
  • metadata: The array of additional metadata that was passed in.

File

core/lib/Drupal/Core/Menu/ContextualLinkManagerInterface.php, line 44

Class

ContextualLinkManagerInterface
Provides an object which returns the available contextual links.

Namespace

Drupal\Core\Menu

Code

public function getContextualLinksArrayByGroup($group_name, array $route_parameters, array $metadata = 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!ContextualLinkManagerInterface.php/function/ContextualLinkManagerInterface::getContextualLinksArrayByGroup/8.1.x