You are here

class ProdCheckProcessor in Production check & Production monitor 8

Same name in this branch
  1. 8 src/Annotation/ProdCheckProcessor.php \Drupal\prod_check\Annotation\ProdCheckProcessor
  2. 8 src/Entity/ProdCheckProcessor.php \Drupal\prod_check\Entity\ProdCheckProcessor

Defines a Plugin annotation object for prod check processors.

Hierarchy

Expanded class hierarchy of ProdCheckProcessor

3 classes are annotated with ProdCheckProcessor
Internal in src/Plugin/ProdCheckProcessor/Internal.php
Internal processor that handles processing of all checks.
Rest in modules/prod_check_rest/src/Plugin/ProdCheckProcessor/Rest.php
Release notes check
XmlRpc in modules/prod_check_xmlrpc/src/Plugin/ProdCheckProcessor/XmlRpc.php
XML-RPC processor

File

src/Annotation/ProdCheckProcessor.php, line 12

Namespace

Drupal\prod_check\Annotation
View source
class ProdCheckProcessor extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The title of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $title;

}

Members

Namesort descending Modifiers Type Description Overrides
Plugin::$definition protected property The plugin definition read from the class annotation. 1
Plugin::get public function Gets the value of an annotation. Overrides AnnotationInterface::get 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
Plugin::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId
Plugin::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
Plugin::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider
Plugin::__construct public function Constructs a Plugin object. 2
ProdCheckProcessor::$id public property The plugin ID.
ProdCheckProcessor::$title public property The title of the plugin.