public function ProdCheck::getPluginCollections in Production check & Production monitor 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/ ProdCheck.php, line 97
Class
- ProdCheck
- Defines the configured prod check entity.
Namespace
Drupal\prod_check\EntityCode
public function getPluginCollections() {
return [
'configuration' => $this
->getPluginCollection(),
];
}