Yaffs site version 1.1
[yaffs-website] / web / modules / contrib / metatag / metatag_favicons / src / Plugin / metatag / Tag / AppleTouchIconPrecomposed120x120.php
1 <?php
2
3 namespace Drupal\metatag_favicons\Plugin\metatag\Tag;
4
5 use \Drupal\metatag_favicons\Plugin\metatag\Tag\LinkSizesBase;
6
7 /**
8  * The Favicons "apple-touch-icon-precomposed_120x120" meta tag.
9  *
10  * @MetatagTag(
11  *   id = "apple_touch_icon_precomposed_120x120",
12  *   label = @Translation("Apple touch icon (precomposed): 120px x 120px"),
13  *   description = @Translation("A PNG image that is 120px wide by 120px high. Used with iPhone with @2x display running iOS >= 7."),
14  *   name = "apple-touch-icon-precomposed",
15  *   group = "favicons",
16  *   weight = 19,
17  *   type = "image",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class AppleTouchIconPrecomposed120x120 extends LinkSizesBase {
23   function sizes() {
24     return '120x120';
25   }
26 }
27