You are here

public function CheckListBuilder::__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\ProdCheckPluginManager $manager: The processor plugin manager.

Overrides EntityListBuilder::__construct

File

src/CheckListBuilder.php, line 41

Class

CheckListBuilder
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, ProdCheckPluginManager $manager) {
  parent::__construct($entity_type, $storage);
  $this->processorManager = $manager;
}