a86bc63ff0b67ffbaba9c62923da61fdeb69e099
[yaffs-website] / web / modules / contrib / metatag / metatag_favicons / src / Plugin / metatag / Tag / Icon192x192.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 "icon_192x192" meta tag.
9  *
10  * @MetatagTag(
11  *   id = "icon_192x192",
12  *   label = @Translation("Icon: 192px x 192px"),
13  *   description = @Translation("A PNG image that is 192px wide by 192px high."),
14  *   name = "icon",
15  *   group = "favicons",
16  *   weight = 6,
17  *   type = "image",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class Icon192x192 extends LinkSizesBase {
23   function sizes() {
24     return '192x192';
25   }
26 }
27