PluginSelector.php in Plugin 8.2
Same filename in this branch
Namespace
Drupal\plugin\AnnotationFile
src/Annotation/PluginSelector.phpView source
<?php
namespace Drupal\plugin\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Provides a plugin selector plugin annotation.
*
* @Annotation
*/
class PluginSelector extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The translated human-readable plugin name.
*
* @var string
*/
public $label;
}
Classes
Name | Description |
---|---|
PluginSelector | Provides a plugin selector plugin annotation. |