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