Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / file_mdm / src / Plugin / Annotation / FileMetadata.php
diff --git a/web/modules/contrib/file_mdm/src/Plugin/Annotation/FileMetadata.php b/web/modules/contrib/file_mdm/src/Plugin/Annotation/FileMetadata.php
new file mode 100644 (file)
index 0000000..7632ce0
--- /dev/null
@@ -0,0 +1,43 @@
+<?php
+
+namespace Drupal\file_mdm\Plugin\Annotation;
+
+use Drupal\Component\Annotation\Plugin;
+
+/**
+ * Defines a Plugin annotation object for FileMetadata plugins.
+ *
+ * @Annotation
+ */
+class FileMetadata extends Plugin {
+
+  /**
+   * The plugin ID.
+   *
+   * @var string
+   */
+  public $id;
+
+  /**
+   * The title of the plugin.
+   *
+   * The string should be wrapped in a @Translation().
+   *
+   * @var \Drupal\Core\Annotation\Translation
+   *
+   * @ingroup plugin_translatable
+   */
+  public $title;
+
+  /**
+   * An informative description of the plugin.
+   *
+   * The string should be wrapped in a @Translation().
+   *
+   * @var \Drupal\Core\Annotation\Translation
+   *
+   * @ingroup plugin_translatable
+   */
+  public $help;
+
+}