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