You are here

public function EntityQueue::getPluginCollections in Entityqueue 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/EntityQueue.php, line 211

Class

EntityQueue
Defines the EntityQueue entity class.

Namespace

Drupal\entityqueue\Entity

Code

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