Yaffs site version 1.1
[yaffs-website] / web / modules / contrib / metatag / metatag_favicons / src / Plugin / metatag / Tag / ShortcutIcon.php
diff --git a/web/modules/contrib/metatag/metatag_favicons/src/Plugin/metatag/Tag/ShortcutIcon.php b/web/modules/contrib/metatag/metatag_favicons/src/Plugin/metatag/Tag/ShortcutIcon.php
new file mode 100644 (file)
index 0000000..c642be5
--- /dev/null
@@ -0,0 +1,25 @@
+<?php
+
+namespace Drupal\metatag_favicons\Plugin\metatag\Tag;
+
+use \Drupal\metatag\Plugin\metatag\Tag\LinkRelBase;
+
+/**
+ * The Favicons "shortcut icon" meta tag.
+ *
+ * @MetatagTag(
+ *   id = "shortcut_icon",
+ *   label = @Translation("Default shortcut icon"),
+ *   description = @Translation("The traditional favicon, must be either a GIF, ICO, JPG/JPEG or PNG image."),
+ *   name = "shortcut icon",
+ *   group = "favicons",
+ *   weight = 1,
+ *   type = "image",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class ShortcutIcon extends LinkRelBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}
+