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\EntityCode
public function getPluginCollections() {
return [
'backend_configuration' => $this
->getBackendCollection(),
];
}