You are here

public function ConfirmDeleteMultiple::__construct in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/comment/src/Form/ConfirmDeleteMultiple.php \Drupal\comment\Form\ConfirmDeleteMultiple::__construct()

Creates an new ConfirmDeleteMultiple form.

Parameters

\Drupal\comment\CommentStorageInterface $comment_storage: The comment storage.

File

core/modules/comment/src/Form/ConfirmDeleteMultiple.php, line 42
Contains \Drupal\comment\Form\ConfirmDeleteMultiple.

Class

ConfirmDeleteMultiple
Provides the comment multiple delete confirmation form.

Namespace

Drupal\comment\Form

Code

public function __construct(CommentStorageInterface $comment_storage) {
  $this->commentStorage = $comment_storage;
}