Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / metatag / metatag_favicons / src / Plugin / metatag / Tag / AppleTouchIconPrecomposed152x152.php
1 <?php
2
3 namespace Drupal\metatag_favicons\Plugin\metatag\Tag;
4
5 /**
6  * The Favicons "apple-touch-icon-precomposed_152x152" meta tag.
7  *
8  * @MetatagTag(
9  *   id = "apple_touch_icon_precomposed_152x152",
10  *   label = @Translation("Apple touch icon (precomposed): 152px x 152px"),
11  *   description = @Translation("A PNG image that is 152px wide by 152px high. Used with iPad with @2x display running iOS >= 7."),
12  *   name = "apple-touch-icon-precomposed",
13  *   group = "favicons",
14  *   weight = 21,
15  *   type = "image",
16  *   secure = FALSE,
17  *   multiple = FALSE
18  * )
19  */
20 class AppleTouchIconPrecomposed152x152 extends LinkSizesBase {
21
22   /**
23    * {@inheritdoc}
24    */
25   protected function sizes() {
26     return '152x152';
27   }
28
29 }