public function MenuActiveTrail::__construct

public MenuActiveTrail::__construct(MenuLinkManagerInterface $menu_link_manager, RouteMatchInterface $route_match, CacheBackendInterface $cache, LockBackendInterface $lock)

Constructs a \Drupal\Core\Menu\MenuActiveTrail object.

Parameters

\Drupal\Core\Menu\MenuLinkManagerInterface $menu_link_manager: The menu link plugin manager.

\Drupal\Core\Routing\RouteMatchInterface $route_match: A route match object for finding the active link.

\Drupal\Core\Cache\CacheBackendInterface $cache: The cache backend.

\Drupal\Core\Lock\LockBackendInterface $lock: The lock backend.

Overrides CacheCollector::__construct

File

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

Class

MenuActiveTrail
Provides the default implementation of the active menu trail service.

Namespace

Drupal\Core\Menu

Code

public function __construct(MenuLinkManagerInterface $menu_link_manager, RouteMatchInterface $route_match, CacheBackendInterface $cache, LockBackendInterface $lock) {
  parent::__construct(NULL, $cache, $lock);
  $this->menuLinkManager = $menu_link_manager;
  $this->routeMatch = $route_match;
}

© 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!MenuActiveTrail.php/function/MenuActiveTrail::__construct/8.1.x