You are here

public function Queue::getPluginCollections in Advanced Queue 8

Gets the plugin collections used by this object.

Return value

\Drupal\Component\Plugin\LazyPluginCollection[] An array of plugin collections, keyed by the property name they use to store their configuration.

Overrides ObjectWithPluginCollectionInterface::getPluginCollections

File

src/Entity/Queue.php, line 213

Class

Queue
Defines the queue entity class.

Namespace

Drupal\advancedqueue\Entity

Code

public function getPluginCollections() {
  return [
    'backend_configuration' => $this
      ->getBackendCollection(),
  ];
}