metatag-8.x-1.x-dev/metatag_favicons/src/Plugin/metatag/Tag/Icon16x16.php
metatag_favicons/src/Plugin/metatag/Tag/Icon16x16.php
<?php
namespace Drupal\metatag_favicons\Plugin\metatag\Tag;
/**
* The Favicons "icon_16x16" meta tag.
*
* @MetatagTag(
* id = "icon_16x16",
* label = @Translation("Icon: 16px x 16px"),
* description = @Translation("A PNG image that is 16px wide by 16px high."),
* name = "icon",
* group = "favicons",
* weight = 3,
* type = "image",
* secure = FALSE,
* multiple = FALSE
* )
*/
class Icon16x16 extends LinkSizesBase {
/**
* {@inheritdoc}
*/
protected function iconSize(): string {
return '16x16';
}
}
