You are here

public function DeletedWorkspaceQueue::__construct in Multiversion 8

Constructs a \Drupal\Component\Plugin\PluginBase 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.

Overrides PluginBase::__construct

File

src/Plugin/QueueWorker/DeletedWorkspaceQueue.php, line 39

Class

DeletedWorkspaceQueue
Class DeletedWorkspaceQueue

Namespace

Drupal\multiversion\Plugin\QueueWorker

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, WorkspaceManagerInterface $workspace_manager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->entityTypeManager = $entity_type_manager;
  $this->workspaceManager = $workspace_manager;
}