class ImcePlugin in IMCE 8
Same name and namespace in other branches
- 8.2 src/Annotation/ImcePlugin.php \Drupal\imce\Annotation\ImcePlugin
Defines an ImcePlugin annotation object.
Plugin Namespace: Plugin\ImcePlugin.
Hierarchy
- class \Drupal\Component\Annotation\Plugin implements AnnotationInterface
- class \Drupal\imce\Annotation\ImcePlugin
Expanded class hierarchy of ImcePlugin
See also
5 classes are annotated with ImcePlugin
- Core in src/
Plugin/ ImcePlugin/ Core.php - Defines Imce Core plugin.
- Delete in src/
Plugin/ ImcePlugin/ Delete.php - Defines Imce Delete plugin.
- Newfolder in src/
Plugin/ ImcePlugin/ Newfolder.php - Defines Imce New Folder plugin.
- Resize in src/
Plugin/ ImcePlugin/ Resize.php - Defines Imce Resize plugin.
- Upload in src/
Plugin/ ImcePlugin/ Upload.php - Defines Imce Upload plugin.
File
- src/
Annotation/ ImcePlugin.php, line 16
Namespace
Drupal\imce\AnnotationView source
class ImcePlugin extends Plugin {
/**
* Plugin ID.
*
* @var string
*/
public $id;
/**
* Plugin label.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $label;
/**
* Plugin weight.
*
* @var int
*/
public $weight = 0;
/**
* Operation definitions.
*
* @var array
*/
public $operations = [];
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ImcePlugin:: |
public | property | Plugin ID. | |
ImcePlugin:: |
public | property | Plugin label. | |
ImcePlugin:: |
public | property | Operation definitions. | |
ImcePlugin:: |
public | property | Plugin weight. | |
Plugin:: |
protected | property | The plugin definition read from the class annotation. | 1 |
Plugin:: |
public | function |
Gets the value of an annotation. Overrides AnnotationInterface:: |
5 |
Plugin:: |
public | function |
Gets the class of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Gets the unique ID for this annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Gets the name of the provider of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
protected | function | Parses an annotation into its definition. | |
Plugin:: |
public | function |
Sets the class of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Sets the name of the provider of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function | Constructs a Plugin object. | 2 |