public function MessageDeletionWorker::__construct in Message 8
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/ MessageDeletionWorker.php, line 44
Class
- MessageDeletionWorker
- Deletes a set of messages.
Namespace
Drupal\message\Plugin\QueueWorkerCode
public function __construct(array $configuration, $plugin_id, array $plugin_definition, EntityTypeManagerInterface $entity_type_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->messageStorage = $entity_type_manager
->getStorage('message');
}