Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_app_links / src / Plugin / metatag / Tag / AlWindowsUniversalAppName.php
diff --git a/web/modules/contrib/metatag/metatag_app_links/src/Plugin/metatag/Tag/AlWindowsUniversalAppName.php b/web/modules/contrib/metatag/metatag_app_links/src/Plugin/metatag/Tag/AlWindowsUniversalAppName.php
new file mode 100644 (file)
index 0000000..3275f9e
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+
+namespace Drupal\metatag_app_links\Plugin\metatag\Tag;
+
+use Drupal\metatag\Plugin\metatag\Tag\MetaPropertyBase;
+
+/**
+ * The AppLinks Windows Universal app name meta tag.
+ *
+ * @MetatagTag(
+ *   id = "al_windows_universal_app_name",
+ *   label = @Translation("Windows Universal app name"),
+ *   description = @Translation("The name of the app (suitable for display)"),
+ *   name = "al:windows_universal:app_name",
+ *   group = "app_links",
+ *   weight = 1,
+ *   type = "string",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class AlWindowsUniversalAppName extends MetaPropertyBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}