58de692f87d0889581b37570e8c702d7bb31736e
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / metatag / Tag / GeoPlacename.php
1 <?php
2
3 namespace Drupal\metatag\Plugin\metatag\Tag;
4
5 use \Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
6
7 /**
8  * Provides a plugin for the 'geo.placename' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "geo_placename",
12  *   label = @Translation("Geographical place name"),
13  *   description = @Translation("A location's formal name."),
14  *   name = "geo.placename",
15  *   group = "advanced",
16  *   weight = 0,
17  *   type = "label",
18  *   secure = 0,
19  *   multiple = FALSE
20  * )
21  */
22 class GeoPlacename extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }