a0a940acb1f19f24fbd96ec55914b499cb6bebf1
[yaffs-website] / web / modules / contrib / metatag / metatag_favicons / src / Plugin / metatag / Tag / Icon96x96.php
1 <?php
2
3 namespace Drupal\metatag_favicons\Plugin\metatag\Tag;
4
5 /**
6  * The Favicons "icon_96x96" meta tag.
7  *
8  * @MetatagTag(
9  *   id = "icon_96x96",
10  *   label = @Translation("Icon: 96px x 96px"),
11  *   description = @Translation("A PNG image that is 96px wide by 96px high."),
12  *   name = "icon",
13  *   group = "favicons",
14  *   weight = 5,
15  *   type = "image",
16  *   secure = FALSE,
17  *   multiple = FALSE
18  * )
19  */
20 class Icon96x96 extends LinkSizesBase {
21
22   /**
23    * {@inheritdoc}
24    */
25   protected function sizes() {
26     return '96x96';
27   }
28
29 }