You are here

public function MenuLinkTreeInterface::transform in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Menu/MenuLinkTreeInterface.php \Drupal\Core\Menu\MenuLinkTreeInterface::transform()

Applies menu link tree manipulators to transform the given tree.

Parameters

\Drupal\Core\Menu\MenuLinkTreeElement[] $tree: The menu tree to manipulate.

array $manipulators: The menu link tree manipulators to apply. Each is an array with keys:

Return value

\Drupal\Core\Menu\MenuLinkTreeElement[] The manipulated menu link tree.

1 method overrides MenuLinkTreeInterface::transform()
MenuLinkTree::transform in core/lib/Drupal/Core/Menu/MenuLinkTree.php
Applies menu link tree manipulators to transform the given tree.

File

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

Class

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

Namespace

Drupal\Core\Menu

Code

public function transform(array $tree, array $manipulators);