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