You are here

public function MenuDeleteForm::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/menu_ui/src/Form/MenuDeleteForm.php \Drupal\menu_ui\Form\MenuDeleteForm::__construct()

Constructs a new MenuDeleteForm.

Parameters

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

\Drupal\Core\Database\Connection $connection: The database connection.

File

core/modules/menu_ui/src/Form/MenuDeleteForm.php, line 40

Class

MenuDeleteForm
Defines a confirmation form for deletion of a custom menu.

Namespace

Drupal\menu_ui\Form

Code

public function __construct(MenuLinkManagerInterface $menu_link_manager, Connection $connection) {
  $this->menuLinkManager = $menu_link_manager;
  $this->connection = $connection;
}