You are here

class DevelDumper in Devel 8

Same name and namespace in other branches
  1. 8.3 src/Annotation/DevelDumper.php \Drupal\devel\Annotation\DevelDumper
  2. 8.2 src/Annotation/DevelDumper.php \Drupal\devel\Annotation\DevelDumper
  3. 4.x src/Annotation/DevelDumper.php \Drupal\devel\Annotation\DevelDumper

Defines a DevelDumper annotation object.

Hierarchy

Expanded class hierarchy of DevelDumper

See also

\Drupal\devel\DevelDumperPluginManager

\Drupal\devel\DevelDumperInterface

\Drupal\devel\DevelDumperBase

Plugin API

1 file declares its use of DevelDumper
DevelDumperPluginManager.php in src/DevelDumperPluginManager.php
8 classes are annotated with DevelDumper
AvailableTestDumper in tests/modules/devel_dumper_test/src/Plugin/Devel/Dumper/AvailableTestDumper.php
Provides a AvailableTestDumper plugin.
ChromePhp in src/Plugin/Devel/Dumper/ChromePhp.php
Provides a ChromePhp dumper plugin.
DoctrineDebug in src/Plugin/Devel/Dumper/DoctrineDebug.php
Provides a DoctrineDebug dumper plugin.
DrupalVariable in src/Plugin/Devel/Dumper/DrupalVariable.php
Provides a DrupalVariable dumper plugin.
FirePhp in src/Plugin/Devel/Dumper/FirePhp.php
Provides a FirePhp dumper plugin.

... See full list

File

src/Annotation/DevelDumper.php, line 17

Namespace

Drupal\devel\Annotation
View source
class DevelDumper extends Plugin {

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

  /**
   * The human-readable name of the DevelDumper type.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $label;

  /**
   * A short description of the DevelDumper type.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $description;

}

Members

Namesort descending Modifiers Type Description Overrides
DevelDumper::$description public property A short description of the DevelDumper type.
DevelDumper::$id public property The plugin ID.
DevelDumper::$label public property The human-readable name of the DevelDumper type.
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