You are here

public function ProdCheckProcessor::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/ProdCheckProcessor.php, line 92

Class

ProdCheckProcessor
Defines the configured prod check processor entity.

Namespace

Drupal\prod_check\Entity

Code

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