Version 1
[yaffs-website] / web / core / modules / ckeditor / src / Annotation / CKEditorPlugin.php
diff --git a/web/core/modules/ckeditor/src/Annotation/CKEditorPlugin.php b/web/core/modules/ckeditor/src/Annotation/CKEditorPlugin.php
new file mode 100644 (file)
index 0000000..3b4c2c5
--- /dev/null
@@ -0,0 +1,40 @@
+<?php
+
+namespace Drupal\ckeditor\Annotation;
+
+use Drupal\Component\Annotation\Plugin;
+
+/**
+ * Defines a CKEditorPlugin annotation object.
+ *
+ * Plugin Namespace: Plugin\CKEditorPlugin
+ *
+ * For a working example, see \Drupal\ckeditor\Plugin\CKEditorPlugin\DrupalImage
+ *
+ * @see \Drupal\ckeditor\CKEditorPluginInterface
+ * @see \Drupal\ckeditor\CKEditorPluginBase
+ * @see \Drupal\ckeditor\CKEditorPluginManager
+ * @see hook_ckeditor_plugin_info_alter()
+ * @see plugin_api
+ *
+ * @Annotation
+ */
+class CKEditorPlugin extends Plugin {
+
+  /**
+   * The plugin ID.
+   *
+   * @var string
+   */
+  public $id;
+
+  /**
+   * The human-readable name of the CKEditor plugin.
+   *
+   * @ingroup plugin_translatable
+   *
+   * @var \Drupal\Core\Annotation\Translation
+   */
+  public $label;
+
+}