664bfdb7b5a6ece792ca5de4039f58c8c4473a43
[yaffs-website] / web / modules / contrib / metatag / metatag_hreflang / src / Plugin / metatag / Group / Hreflang.php
1 <?php
2
3 namespace Drupal\metatag_hreflang\Plugin\metatag\Group;
4
5 use \Drupal\metatag\Plugin\metatag\Group\GroupBase;
6
7 /**
8  * Provides a plugin for the 'Alternative language links (hreflang)' meta tag group.
9  *
10  * @MetatagGroup(
11  *   id = "hreflang",
12  *   label = @Translation("Alternative language links (hreflang)"),
13  *   description = @Translation("These meta tags are designed to point visitors to versions of the current page in other languages."),
14  *   weight = 60,
15  * )
16  */
17 class Hreflang extends GroupBase {
18   // Nothing here yet. Just a placeholder class for a plugin.
19 }