Yaffs site version 1.1
[yaffs-website] / web / modules / contrib / metatag / metatag_favicons / src / Plugin / metatag / Tag / AppleTouchIconPrecomposed144x144.php
diff --git a/web/modules/contrib/metatag/metatag_favicons/src/Plugin/metatag/Tag/AppleTouchIconPrecomposed144x144.php b/web/modules/contrib/metatag/metatag_favicons/src/Plugin/metatag/Tag/AppleTouchIconPrecomposed144x144.php
new file mode 100644 (file)
index 0000000..e41e107
--- /dev/null
@@ -0,0 +1,27 @@
+<?php
+
+namespace Drupal\metatag_favicons\Plugin\metatag\Tag;
+
+use \Drupal\metatag_favicons\Plugin\metatag\Tag\LinkSizesBase;
+
+/**
+ * The Favicons "apple-touch-icon-precomposed_144x144" meta tag.
+ *
+ * @MetatagTag(
+ *   id = "apple_touch_icon_precomposed_144x144",
+ *   label = @Translation("Apple touch icon (precomposed): 144px x 144px"),
+ *   description = @Translation("A PNG image that is 144px wide by 144px high. Used with iPad with @2x display running iOS <= 6."),
+ *   name = "apple-touch-icon-precomposed",
+ *   group = "favicons",
+ *   weight = 20,
+ *   type = "image",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class AppleTouchIconPrecomposed144x144 extends LinkSizesBase {
+  function sizes() {
+    return '144x144';
+  }
+}
+