Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Menu/MenuLinkTreeInterface.php \Drupal\Core\Menu\MenuLinkTreeInterface::getCurrentRouteMenuTreeParameters()
  2. 9 core/lib/Drupal/Core/Menu/MenuLinkTreeInterface.php \Drupal\Core\Menu\MenuLinkTreeInterface::getCurrentRouteMenuTreeParameters()

Gets the link tree parameters for rendering a specific menu.

Builds menu link tree parameters that:

  • Expand all links in the active trail based on route being viewed.
  • Expand the descendants of the links in the active trail whose 'expanded' flag is enabled.

This only sets the (relatively complex) parameters to achieve the two above goals, but you can still further customize these parameters.

Parameters

string $menu_name: The menu name, needed for retrieving the active trail and links with the 'expanded' flag enabled.

Return value

\Drupal\Core\Menu\MenuTreeParameters The parameters to determine which menu links to be loaded into a tree.

See also

\Drupal\Core\Menu\MenuTreeParameters

File

core/lib/Drupal/Core/Menu/MenuLinkTreeInterface.php, line 48

Class

MenuLinkTreeInterface
Defines an interface for loading, transforming and rendering menu link trees.

Namespace

Drupal\Core\Menu

Code

public function getCurrentRouteMenuTreeParameters($menu_name);