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