You are here

public function SaveMeetingRecordsQueue::__construct in Opigno Moxtra 8

Same name and namespace in other branches
  1. 3.x src/Plugin/QueueWorker/SaveMeetingRecordsQueue.php \Drupal\opigno_moxtra\Plugin\QueueWorker\SaveMeetingRecordsQueue::__construct()

Constructs a new MessageDeletionWorker object.

Parameters

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

string $plugin_id: The plugin_id for the plugin instance.

array $plugin_definition: The plugin implementation definition.

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

Overrides PluginBase::__construct

File

src/Plugin/QueueWorker/SaveMeetingRecordsQueue.php, line 55

Class

SaveMeetingRecordsQueue
Save meeting records on CRON run.

Namespace

Drupal\opigno_moxtra\Plugin\QueueWorker

Code

public function __construct(array $configuration, $plugin_id, array $plugin_definition, EntityTypeManagerInterface $entity_type_manager, MoxtraServiceInterface $moxtra_service) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->entityTypeManager = $entity_type_manager;
  $this->moxtraService = $moxtra_service;
}