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