You are here

public function ProdCheckProcessor::getPlugin in Production check & Production monitor 8

Returns the operation plugin.

Return value

\Drupal\prod_check\Plugin\ProdCheckProcessorInterface

Overrides ProdCheckProcessorConfigInterface::getPlugin

1 call to ProdCheckProcessor::getPlugin()
ProdCheckProcessor::isConfigurable in src/Entity/ProdCheckProcessor.php
Returns whether or not this processor is configurable.

File

src/Entity/ProdCheckProcessor.php, line 99

Class

ProdCheckProcessor
Defines the configured prod check processor entity.

Namespace

Drupal\prod_check\Entity

Code

public function getPlugin() {
  return $this
    ->getPluginCollection()
    ->get($this->plugin);
}