class DevelDumper

Same name in other branches
  1. 4.x src/Annotation/DevelDumper.php \Drupal\devel\Annotation\DevelDumper
  2. 5.x src/Annotation/DevelDumper.php \Drupal\devel\Annotation\DevelDumper

Defines a DevelDumper annotation object.

Hierarchy

  • class \Drupal\devel\Annotation\DevelDumper extends \Drupal\Component\Annotation\Plugin

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

Title Sort descending Modifiers Object type Summary
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.