class DevelDumper

Same name and namespace in other branches
  1. 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
5 classes are annotated with DevelDumper
AvailableTestDumper in tests/modules/devel_dumper_test/src/Plugin/Devel/Dumper/AvailableTestDumper.php
Provides a AvailableTestDumper plugin.
DoctrineDebug in src/Plugin/Devel/Dumper/DoctrineDebug.php
Provides a DoctrineDebug dumper plugin.
Kint in src/Plugin/Devel/Dumper/Kint.php
Provides a Kint dumper plugin.
NotAvailableTestDumper in tests/modules/devel_dumper_test/src/Plugin/Devel/Dumper/NotAvailableTestDumper.php
Provides a NotAvailableTestDumper plugin.
VarDumper in src/Plugin/Devel/Dumper/VarDumper.php
Provides a Symfony VarDumper dumper plugin.

File

src/Annotation/DevelDumper.php, line 17

Namespace

Drupal\devel\Annotation
View source
class DevelDumper extends Plugin {
    
    /**
     * The human-readable name of the DevelDumper type.
     *
     * @var \Drupal\Core\Annotation\Translation
     *
     * @ingroup plugin_translatable
     */
    public $label;
    
    /**
     * A short description of the DevelDumper type.
     *
     * @var \Drupal\Core\Annotation\Translation
     *
     * @ingroup plugin_translatable
     */
    public $description;

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
DevelDumper::$description public property A short description of the DevelDumper type.
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 6
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass 1
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 1
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass 1
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. 3