AppleTouchIcon.php in Metatag 8
File
metatag_favicons/src/Plugin/metatag/Tag/AppleTouchIcon.phpView source
<?php
namespace Drupal\metatag_favicons\Plugin\metatag\Tag;
use Drupal\metatag\Plugin\metatag\Tag\LinkRelBase;
/**
* The Favicons "apple-touch-icon" meta tag.
*
* @MetatagTag(
* id = "apple_touch_icon",
* label = @Translation("Apple touch icon: 60px x 60px"),
* description = @Translation("A PNG image that is 60px wide by 60px high. Used with the non-Retina iPhone, iPod Touch, and Android 2.1+ devices."),
* name = "apple-touch-icon",
* group = "favicons",
* weight = 7,
* type = "image",
* secure = FALSE,
* multiple = FALSE
* )
*/
class AppleTouchIcon extends LinkRelBase {
}
Classes
Name | Description |
---|---|
AppleTouchIcon | The Favicons "apple-touch-icon" meta tag. |