Version 1
[yaffs-website] / web / modules / contrib / entity_browser / src / Annotation / EntityBrowserWidgetSelector.php
diff --git a/web/modules/contrib/entity_browser/src/Annotation/EntityBrowserWidgetSelector.php b/web/modules/contrib/entity_browser/src/Annotation/EntityBrowserWidgetSelector.php
new file mode 100644 (file)
index 0000000..a10ef84
--- /dev/null
@@ -0,0 +1,43 @@
+<?php
+
+namespace Drupal\entity_browser\Annotation;
+
+use Drupal\Component\Annotation\Plugin;
+
+/**
+ * Defines an entity browser widget selector annotation object.
+ *
+ * @see hook_entity_browser_widget_selector_info_alter()
+ *
+ * @Annotation
+ */
+class EntityBrowserWidgetSelector extends Plugin {
+
+  /**
+   * The plugin ID.
+   *
+   * @var string
+   */
+  public $id;
+
+  /**
+   * The human-readable name of the widget selector.
+   *
+   * @ingroup plugin_translatable
+   *
+   * @var \Drupal\Core\Annotation\Translation
+   */
+  public $label;
+
+  /**
+   * A brief description of the widget selector.
+   *
+   * This will be shown when adding or configuring this widget selector.
+   *
+   * @ingroup plugin_translatable
+   *
+   * @var \Drupal\Core\Annotation\Translation (optional)
+   */
+  public $description = '';
+
+}