You are here

XUaCompatible.php in Metatag 8

File

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

namespace Drupal\metatag_mobile\Plugin\metatag\Tag;

use Drupal\metatag\Plugin\metatag\Tag\MetaHttpEquivBase;

/**
 * Provides a plugin for the 'x:ua:compatible' meta tag.
 *
 * @MetatagTag(
 *   id = "x_ua_compatible",
 *   label = @Translation("X-UA-Compatible"),
 *   description = @Translation("Indicates to IE which rendering engine should be used for the current page."),
 *   name = "x-ua-compatible",
 *   group = "windows_mobile",
 *   weight = 93,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class XUaCompatible extends MetaHttpEquivBase {

}

Classes

Namesort descending Description
XUaCompatible Provides a plugin for the 'x:ua:compatible' meta tag.