You are here

FormatDetection.php in Metatag 8

File

metatag_mobile/src/Plugin/metatag/Tag/FormatDetection.php
View source
<?php

namespace Drupal\metatag_mobile\Plugin\metatag\Tag;

use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;

/**
 * The Format Detection for Apple mobile metatag.
 *
 * @MetatagTag(
 *   id = "format_detection",
 *   label = @Translation("Format detection"),
 *   description = @Translation("If set to 'telephone=no' the page will not be checked for phone numbers, which would be presented."),
 *   name = "format-detection",
 *   group = "apple_mobile",
 *   weight = 90,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class FormatDetection extends MetaNameBase {

}

Classes

Namesort descending Description
FormatDetection The Format Detection for Apple mobile metatag.