95642761f7980023bef1fe1fc0e93b1367ddeb5c
[yaffs-website] / web / modules / contrib / metatag / metatag_favicons / src / Plugin / metatag / Tag / AppleTouchIcon76x76.php
1 <?php
2
3 namespace Drupal\metatag_favicons\Plugin\metatag\Tag;
4
5 use \Drupal\metatag_favicons\Plugin\metatag\Tag\LinkSizesBase;
6
7 /**
8  * The Favicons "apple-touch-icon_76x76" meta tag.
9  *
10  * @MetatagTag(
11  *   id = "apple_touch_icon_76x76",
12  *   label = @Translation("Apple touch icon: 76px x 76px"),
13  *   description = @Translation("A PNG image that is 76px wide by 76px high. Used with the iPad mini and the second-generation iPad (@1x display) on iOS >= 7."),
14  *   name = "apple-touch-icon",
15  *   group = "favicons",
16  *   weight = 9,
17  *   type = "image",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class AppleTouchIcon76x76 extends LinkSizesBase {
23   function sizes() {
24     return '76x76';
25   }
26 }
27