Version 1
[yaffs-website] / web / modules / contrib / video_embed_field / src / Annotation / VideoEmbedProvider.php
diff --git a/web/modules/contrib/video_embed_field/src/Annotation/VideoEmbedProvider.php b/web/modules/contrib/video_embed_field/src/Annotation/VideoEmbedProvider.php
new file mode 100644 (file)
index 0000000..d1e658d
--- /dev/null
@@ -0,0 +1,30 @@
+<?php
+
+namespace Drupal\video_embed_field\Annotation;
+
+use Drupal\Component\Annotation\Plugin;
+
+/**
+ * Defines a VideoEmbedProvider item annotation object.
+ *
+ * @Annotation
+ */
+class VideoEmbedProvider extends Plugin {
+
+  /**
+   * The plugin ID.
+   *
+   * @var string
+   */
+  public $id;
+
+  /**
+   * The title of the plugin.
+   *
+   * @var \Drupal\Core\Annotation\Translation
+   *
+   * @ingroup plugin_translatable
+   */
+  public $title;
+
+}