Yaffs site version 1.1
[yaffs-website] / web / modules / contrib / metatag / metatag_favicons / src / Plugin / metatag / Tag / Icon192x192.php
diff --git a/web/modules/contrib/metatag/metatag_favicons/src/Plugin/metatag/Tag/Icon192x192.php b/web/modules/contrib/metatag/metatag_favicons/src/Plugin/metatag/Tag/Icon192x192.php
new file mode 100644 (file)
index 0000000..a86bc63
--- /dev/null
@@ -0,0 +1,27 @@
+<?php
+
+namespace Drupal\metatag_favicons\Plugin\metatag\Tag;
+
+use \Drupal\metatag_favicons\Plugin\metatag\Tag\LinkSizesBase;
+
+/**
+ * The Favicons "icon_192x192" meta tag.
+ *
+ * @MetatagTag(
+ *   id = "icon_192x192",
+ *   label = @Translation("Icon: 192px x 192px"),
+ *   description = @Translation("A PNG image that is 192px wide by 192px high."),
+ *   name = "icon",
+ *   group = "favicons",
+ *   weight = 6,
+ *   type = "image",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class Icon192x192 extends LinkSizesBase {
+  function sizes() {
+    return '192x192';
+  }
+}
+