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