Version 1
[yaffs-website] / web / modules / contrib / metatag / src / Annotation / MetatagGroup.php
diff --git a/web/modules/contrib/metatag/src/Annotation/MetatagGroup.php b/web/modules/contrib/metatag/src/Annotation/MetatagGroup.php
new file mode 100644 (file)
index 0000000..6a1773e
--- /dev/null
@@ -0,0 +1,45 @@
+<?php
+
+namespace Drupal\metatag\Annotation;
+
+use Drupal\Component\Annotation\Plugin;
+
+
+/**
+ * Defines a MetatagGroup annotation object.
+ *
+ * @Annotation
+ */
+class MetatagGroup extends Plugin {
+
+  /**
+   * The group's internal ID, in machine name format.
+   *
+   * @var string
+   */
+  public $id;
+
+  /**
+   * The name of the group.
+   *
+   * @var \Drupal\Core\Annotation\Translation
+   *
+   * @ingroup plugin_translatable
+   */
+  public $label;
+
+  /**
+   * Description of the group.
+   *
+   * @var string
+   */
+  public $description;
+
+  /**
+   * Weight of the group.
+   *
+   * @var int
+   */
+  public $weight;
+
+}