public MenuLinkManager::__construct(MenuTreeStorageInterface $tree_storage, StaticMenuLinkOverridesInterface $overrides, ModuleHandlerInterface $module_handler)
Constructs a \Drupal\Core\Menu\MenuLinkManager object.
Parameters
\Drupal\Core\Menu\MenuTreeStorageInterface $tree_storage: The menu link tree storage.
\Drupal\Core\Menu\StaticMenuLinkOverridesInterface $overrides: The service providing overrides for static links.
\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.
File
- core/lib/Drupal/Core/Menu/MenuLinkManager.php, line 108
Class
- MenuLinkManager
- Manages discovery, instantiation, and tree building of menu link plugins.
Namespace
Drupal\Core\Menu
Code
1 2 3 4 5 | public function __construct(MenuTreeStorageInterface $tree_storage , StaticMenuLinkOverridesInterface $overrides , ModuleHandlerInterface $module_handler ) { $this ->treeStorage = $tree_storage ; $this ->overrides = $overrides ; $this ->moduleHandler = $module_handler ; } |
Please login to continue.