You are here

ProdCheckProcessorConfigInterface.php in Production check & Production monitor 8

File

src/Entity/ProdCheckProcessorConfigInterface.php
View 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

Namesort descending Description
ProdCheckProcessorConfigInterface Provides an interface defining a prod check processor entity.