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