You are here

public function ProcessQueueForm::__construct in Field Encryption 3.0.x

Constructs a new FieldEncryptUpdateForm.

Parameters

\Drupal\Core\Queue\QueueFactory $queue_factory: The queue factory.

\Drupal\Core\Queue\QueueWorkerManagerInterface $queue_manager: The QueueWorker manager.

File

src/Form/ProcessQueueForm.php, line 40

Class

ProcessQueueForm
Form builder for the field_encrypt process queue form.

Namespace

Drupal\field_encrypt\Form

Code

public function __construct(QueueFactory $queue_factory, QueueWorkerManagerInterface $queue_manager) {
  $this->queueFactory = $queue_factory;
  $this->queueManager = $queue_manager;
}