public function SignupListBuilder::__construct in SendinBlue 8.2
Same name and namespace in other branches
- 8 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\ControllerCode
public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, SendinblueManager $sendinblueManager) {
parent::__construct($entity_type, $storage);
$this->sendinblueManager = $sendinblueManager;
}