73c186fb5fb8bf3ddb93adf21b51dde07eb89e31
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / FormatDetection.php
1 <?php
2
3 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
6
7 /**
8  * The Format Detection for Apple mobile metatag.
9  *
10  * @MetatagTag(
11  *   id = "format_detection",
12  *   label = @Translation("Format detection"),
13  *   description = @Translation("If set to 'telephone=no' the page will not be checked for phone numbers, which would be presented."),
14  *   name = "format-detection",
15  *   group = "apple_mobile",
16  *   weight = 90,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class FormatDetection extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }