public function AccessScheme::getPluginCollections in Workbench Access 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/ AccessScheme.php, line 114
Class
- AccessScheme
- Defines the Access scheme entity.
Namespace
Drupal\workbench_access\EntityCode
public function getPluginCollections() {
return [
'scheme_settings' => $this
->getPluginCollection(),
];
}