Yaffs site version 1.1
[yaffs-website] / web / modules / contrib / metatag / metatag_favicons / src / Plugin / metatag / Tag / AppleTouchIcon.php
1 <?php
2
3 namespace Drupal\metatag_favicons\Plugin\metatag\Tag;
4
5 use \Drupal\metatag\Plugin\metatag\Tag\LinkRelBase;
6
7 /**
8  * The Favicons "apple-touch-icon" meta tag.
9  *
10  * @MetatagTag(
11  *   id = "apple_touch_icon",
12  *   label = @Translation("Apple touch icon: 60px x 60px"),
13  *   description = @Translation("A PNG image that is 60px wide by 60px high. Used with the non-Retina iPhone, iPod Touch, and Android 2.1+ devices."),
14  *   name = "apple-touch-icon",
15  *   group = "favicons",
16  *   weight = 7,
17  *   type = "image",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class AppleTouchIcon extends LinkRelBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }
25