You are here

public function ProcessorListBuilder::__construct in Production check & Production monitor 8

Constructs a new ProcessorListBuilder object.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.

\Drupal\Core\Entity\EntityStorageInterface $storage: The processor storage.

\Drupal\prod_check\Plugin\ProdCheckProcessorPluginManager $manager: The processor plugin manager.

Overrides EntityListBuilder::__construct

File

src/ProcessorListBuilder.php, line 41

Class

ProcessorListBuilder
Defines a class to build a listing of prod check processor entities.

Namespace

Drupal\prod_check

Code

public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, ProdCheckProcessorPluginManager $manager) {
  parent::__construct($entity_type, $storage);
  $this->processorManager = $manager;
}