You are here

BUEditorPlugin.php in BUEditor 8.2

Same filename and directory in other branches
  1. 8 src/Annotation/BUEditorPlugin.php

File

src/Annotation/BUEditorPlugin.php
View source
<?php

namespace Drupal\bueditor\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a BUEditorPlugin annotation object.
 *
 * Plugin Namespace: Plugin\BUEditorPlugin
 *
 * @see \Drupal\bueditor\BUEditorPluginBase
 *
 * @Annotation
 */
class BUEditorPlugin extends Plugin {

  /**
   * Plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * Plugin label.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $label;

  /**
   * Plugin weight.
   *
   * @var int
   */
  public $weight = 0;

}

Classes

Namesort descending Description
BUEditorPlugin Defines a BUEditorPlugin annotation object.