function MenuForm::__construct

Same name in other branches
  1. 9 core/modules/menu_ui/src/MenuForm.php \Drupal\menu_ui\MenuForm::__construct()
  2. 8.9.x core/modules/menu_ui/src/MenuForm.php \Drupal\menu_ui\MenuForm::__construct()
  3. 10 core/modules/menu_ui/src/MenuForm.php \Drupal\menu_ui\MenuForm::__construct()

Constructs a MenuForm object.

Parameters

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

\Drupal\Core\Menu\MenuLinkTreeInterface $menu_tree: The menu tree service.

\Drupal\Core\Utility\LinkGeneratorInterface $link_generator: The link generator.

\Drupal\menu_link_content\MenuLinkContentStorageInterface $menu_link_content_storage: The menu link content storage handler.

File

core/modules/menu_ui/src/MenuForm.php, line 78

Class

MenuForm
Base form for menu edit forms.

Namespace

Drupal\menu_ui

Code

public function __construct(MenuLinkManagerInterface $menu_link_manager, MenuLinkTreeInterface $menu_tree, LinkGeneratorInterface $link_generator, MenuLinkContentStorageInterface $menu_link_content_storage) {
    $this->menuLinkManager = $menu_link_manager;
    $this->menuTree = $menu_tree;
    $this->linkGenerator = $link_generator;
    $this->menuLinkContentStorage = $menu_link_content_storage;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.