You are here

public function SignupListBuilder::__construct in SendinBlue 8

Same name and namespace in other branches
  1. 8.2 src/Entity/Controller/SignupListBuilder.php \Drupal\sendinblue\Entity\Controller\SignupListBuilder::__construct()

Constructs a \Drupal\system\ConfigFormBase object.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: EntityTypeInterface.

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

\Drupal\sendinblue\SendinblueManager $sendinblueManager: SendinblueManager.

Overrides EntityListBuilder::__construct

File

src/Entity/Controller/SignupListBuilder.php, line 38

Class

SignupListBuilder
Provides a list controller for content_entity_example_contact entity.

Namespace

Drupal\sendinblue\Entity\Controller

Code

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