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