You are here

public function ProdCheck::isConfigurable in Production check & Production monitor 8

Returns whether or not this processor is configurable.

Return value

bool

Overrides ProdCheckConfigInterface::isConfigurable

File

src/Entity/ProdCheck.php, line 126

Class

ProdCheck
Defines the configured prod check entity.

Namespace

Drupal\prod_check\Entity

Code

public function isConfigurable() {
  return $this
    ->getPlugin() instanceof ConfigurableInterface;
}