6a1773e3f5e6aa52fe31b9b8f6c8b80822048c02
[yaffs-website] / web / modules / contrib / metatag / src / Annotation / MetatagGroup.php
1 <?php
2
3 namespace Drupal\metatag\Annotation;
4
5 use Drupal\Component\Annotation\Plugin;
6
7
8 /**
9  * Defines a MetatagGroup annotation object.
10  *
11  * @Annotation
12  */
13 class MetatagGroup extends Plugin {
14
15   /**
16    * The group's internal ID, in machine name format.
17    *
18    * @var string
19    */
20   public $id;
21
22   /**
23    * The name of the group.
24    *
25    * @var \Drupal\Core\Annotation\Translation
26    *
27    * @ingroup plugin_translatable
28    */
29   public $label;
30
31   /**
32    * Description of the group.
33    *
34    * @var string
35    */
36   public $description;
37
38   /**
39    * Weight of the group.
40    *
41    * @var int
42    */
43   public $weight;
44
45 }