You are here

public function DeleteMultiple::__construct in Feeds 8.3

Constructs a DeleteMultiple form object.

Parameters

\Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory: The tempstore factory.

\Drupal\feeds\FeedStorageInterface $storage: The feed storage.

\Drupal\Core\Session\AccountInterface $user: The current user.

File

src/Form/DeleteMultiple.php, line 58

Class

DeleteMultiple
Provides a feed deletion confirmation form.

Namespace

Drupal\feeds\Form

Code

public function __construct(PrivateTempStoreFactory $temp_store_factory, FeedStorageInterface $storage, AccountInterface $user) {
  $this->tempStoreFactory = $temp_store_factory;
  $this->storage = $storage;
  $this->user = $user;
}