ImcePlugin.php in IMCE 8
Same filename and directory in other branches
Namespace
Drupal\imce\AnnotationFile
src/Annotation/ImcePlugin.phpView source
<?php
namespace Drupal\imce\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines an ImcePlugin annotation object.
*
* Plugin Namespace: Plugin\ImcePlugin.
*
* @see \Drupal\imce\ImcePluginBase
*
* @Annotation
*/
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 = [];
}
Classes
Name | Description |
---|---|
ImcePlugin | Defines an ImcePlugin annotation object. |