Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / WebManifest.php
diff --git a/web/modules/contrib/metatag/metatag_mobile/src/Plugin/metatag/Tag/WebManifest.php b/web/modules/contrib/metatag/metatag_mobile/src/Plugin/metatag/Tag/WebManifest.php
new file mode 100644 (file)
index 0000000..5028cae
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+
+namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
+
+use Drupal\metatag\Plugin\metatag\Tag\LinkRelBase;
+
+/**
+ * The Web Manifest for Progressive Web Apps.
+ *
+ * @MetatagTag(
+ *   id = "web_manifest",
+ *   label = @Translation("Web Manifest"),
+ *   description = @Translation("A URL to a manifest.json file that describes the application. The <a href='https://developer.mozilla.org/en-US/docs/Web/Manifest'>JSON-based manifest</a> provides developers with a centralized place to put metadata associated with a web application."),
+ *   name = "manifest",
+ *   group = "mobile",
+ *   weight = 92,
+ *   type = "uri",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class WebManifest extends LinkRelBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}