7e2edbf470b2fdc074ad93de207f48cf43d41614
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / metatag / Tag / Icbm.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 'icbm' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "icbm",
12  *   label = @Translation("ICBM"),
13  *   description = @Translation("Geo-spatial information in 'latitude, longitude' format, e.g. '50.167958, -97.133185'; <a href='https://en.wikipedia.org/wiki/ICBM_address'>see Wikipedia for details</a>."),
14  *   name = "icbm",
15  *   group = "advanced",
16  *   weight = 0,
17  *   type = "label",
18  *   secure = 0,
19  *   multiple = FALSE
20  * )
21  */
22 class Icbm extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }