You are here

ImcePlugin.php in IMCE 8

Same filename and directory in other branches
  1. 8.2 src/Annotation/ImcePlugin.php

File

src/Annotation/ImcePlugin.php
View 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

Namesort descending Description
ImcePlugin Defines an ImcePlugin annotation object.