You are here

public function CourierTemplateCollection::__construct in RNG - Events and Registrations 3.x

Same name and namespace in other branches
  1. 8.2 src/Plugin/Action/CourierTemplateCollection.php \Drupal\rng\Plugin\Action\CourierTemplateCollection::__construct()
  2. 8 src/Plugin/Action/CourierTemplateCollection.php \Drupal\rng\Plugin\Action\CourierTemplateCollection::__construct()

Constructs a RegistrantBasicEmail object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin ID for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity manager.

\Drupal\rng\EventManagerInterface $event_manager: The RNG event manager.

\Drupal\courier\Service\CourierManagerInterface $courier_manager: The courier manager.

Overrides ConfigurableActionBase::__construct

File

src/Plugin/Action/CourierTemplateCollection.php, line 64

Class

CourierTemplateCollection
Creates a template collection and provides a user interface to its templates.

Namespace

Drupal\rng\Plugin\Action

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, EventManagerInterface $event_manager, CourierManagerInterface $courier_manager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->entityTypeManager = $entity_type_manager;
  $this->eventManager = $event_manager;
  $this->courierManager = $courier_manager;
}