8b608773d335c24c00c546859ac8b946fd5ff910
[yaffs-website] / web / modules / contrib / metatag / metatag_favicons / src / Plugin / metatag / Tag / AppleTouchIcon144x144.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_144x144" meta tag.
9  *
10  * @MetatagTag(
11  *   id = "apple_touch_icon_144x144",
12  *   label = @Translation("Apple touch icon: 144px x 144px"),
13  *   description = @Translation("A PNG image that is 144px wide by 144px high. Used with iPad with @2x display running iOS <= 6."),
14  *   name = "apple-touch-icon",
15  *   group = "favicons",
16  *   weight = 12,
17  *   type = "image",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class AppleTouchIcon144x144 extends LinkSizesBase {
23   function sizes() {
24     return '144x144';
25   }
26 }
27