metatag-8.x-1.x-dev/metatag_favicons/src/Plugin/metatag/Tag/AppleTouchIconPrecomposed72x72.php
metatag_favicons/src/Plugin/metatag/Tag/AppleTouchIconPrecomposed72x72.php
<?php
namespace Drupal\metatag_favicons\Plugin\metatag\Tag;
/**
* The Favicons "apple-touch-icon-precomposed_72x72" meta tag.
*
* This is basically a clone of the non-precomposed class.
*
* @MetatagTag(
* id = "apple_touch_icon_precomposed_72x72",
* label = @Translation("Apple touch icon (precomposed): 72px x 72px"),
* description = @Translation("A PNG image that is 72px wide by 72px high. Used with the iPad mini and the first- and second-generation iPad (@1x display) on iOS <= 6."),
* name = "apple-touch-icon-precomposed",
* group = "favicons",
* weight = 16,
* type = "image",
* secure = FALSE,
* multiple = FALSE
* )
*/
class AppleTouchIconPrecomposed72x72 extends AppleTouchIcon72x72 {
// Nothing here yet. Just a placeholder class for a plugin.
}
