class PluginExample

Same name and namespace in other branches
  1. 11.x core/modules/system/tests/modules/plugin_test/src/Plugin/Attribute/PluginExample.php \Drupal\plugin_test\Plugin\Attribute\PluginExample
  2. 11.x core/modules/system/tests/modules/plugin_test/src/Plugin/Annotation/PluginExample.php \Drupal\plugin_test\Plugin\Annotation\PluginExample
  3. 10 core/modules/system/tests/modules/plugin_test/src/Plugin/Attribute/PluginExample.php \Drupal\plugin_test\Plugin\Attribute\PluginExample
  4. 10 core/modules/system/tests/modules/plugin_test/src/Plugin/Annotation/PluginExample.php \Drupal\plugin_test\Plugin\Annotation\PluginExample
  5. 9 core/modules/system/tests/modules/plugin_test/src/Plugin/Annotation/PluginExample.php \Drupal\plugin_test\Plugin\Annotation\PluginExample

Defines a custom Plugin annotation.

Hierarchy

Expanded class hierarchy of PluginExample

Related topics

2 classes are annotated with PluginExample
Example1 in core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/custom_annotation/Example1.php
Provides a test plugin with a custom annotation.
Example2 in core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/custom_annotation/Example2.php
Provides a test plugin with a custom annotation.

File

core/modules/system/tests/modules/plugin_test/src/Plugin/Annotation/PluginExample.php, line 12

Namespace

Drupal\plugin_test\Plugin\Annotation
View source
class PluginExample extends AnnotationBase {
  
  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;
  
  /**
   * Another plugin metadata.
   *
   * @var string
   */
  public $custom;
  
  /**
   * {@inheritdoc}
   */
  public function get() {
    return [
      'id' => $this->id,
      'custom' => $this->custom,
      'class' => $this->class,
      'provider' => $this->provider,
    ];
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.