AppleTouchIcon120x120.php in Metatag 8
File
metatag_favicons/src/Plugin/metatag/Tag/AppleTouchIcon120x120.phpView source
<?php
namespace Drupal\metatag_favicons\Plugin\metatag\Tag;
/**
* The Favicons "apple-touch-icon_120x120" meta tag.
*
* @MetatagTag(
* id = "apple_touch_icon_120x120",
* label = @Translation("Apple touch icon: 120px x 120px"),
* description = @Translation("A PNG image that is 120px wide by 120px high. Used with iPhone with @2x display running iOS >= 7."),
* name = "apple-touch-icon",
* group = "favicons",
* weight = 11,
* type = "image",
* secure = FALSE,
* multiple = FALSE
* )
*/
class AppleTouchIcon120x120 extends LinkSizesBase {
/**
* {@inheritdoc}
*/
protected function sizes() {
return '120x120';
}
}
Classes
Name | Description |
---|---|
AppleTouchIcon120x120 | The Favicons "apple-touch-icon_120x120" meta tag. |