Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / ApplicationName.php
diff --git a/web/modules/contrib/metatag/metatag_mobile/src/Plugin/metatag/Tag/ApplicationName.php b/web/modules/contrib/metatag/metatag_mobile/src/Plugin/metatag/Tag/ApplicationName.php
new file mode 100644 (file)
index 0000000..83ee2f7
--- /dev/null
@@ -0,0 +1,28 @@
+<?php
+/**
+ * @file
+ * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\ApplicationName.
+ */
+
+namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
+
+use \Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
+
+/**
+ * Provides a plugin for the 'application:name' meta tag.
+ *
+ * @MetatagTag(
+ *   id = "application_name",
+ *   label = @Translation("Application name"),
+ *   description = @Translation("The default name displayed with the pinned sites tile (or icon). Set the content attribute to the desired name."),
+ *   name = "application-name",
+ *   group = "windows_mobile",
+ *   weight = 94,
+ *   type = "string",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class ApplicationName extends MetaNameBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}