ProdCheckProcessorConfigInterface.php in Production check & Production monitor 8
Namespace
Drupal\prod_check\EntityFile
src/Entity/ProdCheckProcessorConfigInterface.phpView source
<?php
namespace Drupal\prod_check\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface defining a prod check processor entity.
*/
interface ProdCheckProcessorConfigInterface extends ConfigEntityInterface {
/**
* Returns whether or not this processor is configurable.
*
* @return bool
*/
public function isConfigurable();
/**
* Returns the operation plugin.
*
* @return \Drupal\prod_check\Plugin\ProdCheckProcessorInterface
*/
public function getPlugin();
}
Interfaces
Name | Description |
---|---|
ProdCheckProcessorConfigInterface | Provides an interface defining a prod check processor entity. |