You are here

class ImcePlugin in IMCE 8.2

Same name and namespace in other branches
  1. 8 src/Annotation/ImcePlugin.php \Drupal\imce\Annotation\ImcePlugin

Defines an ImcePlugin annotation object.

Plugin Namespace: Plugin\ImcePlugin.

Hierarchy

Expanded class hierarchy of ImcePlugin

See also

\Drupal\imce\ImcePluginBase

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\Annotation
View 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

Namesort descending Modifiers Type Description Overrides
ImcePlugin::$id public property Plugin ID.
ImcePlugin::$label public property Plugin label.
ImcePlugin::$operations public property Operation definitions.
ImcePlugin::$weight public property Plugin weight.
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 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
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
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
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. 2