You are here

class ProdCheck in Production check & Production monitor 8

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

Defines a Plugin annotation object for prod checks.

Hierarchy

Expanded class hierarchy of ProdCheck

14 classes are annotated with ProdCheck
Contact in src/Plugin/ProdCheck/Modules/Contact.php
Contact status check
CssAggregated in src/Plugin/ProdCheck/Performance/CssAggregated.php
CSS aggregation check
DbLog in src/Plugin/ProdCheck/Server/DbLog.php
Dblog report
Devel in src/Plugin/ProdCheck/Modules/Devel.php
Devel status check
DevelGenerate in src/Plugin/ProdCheck/Modules/DevelGenerate.php
Devel generate check

... See full list

File

src/Annotation/ProdCheck.php, line 12

Namespace

Drupal\prod_check\Annotation
View source
class ProdCheck 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
ProdCheck::$id public property The plugin ID.
ProdCheck::$title public property The title of the plugin.