83ee2f704757caf4d4953ac6d61e1a758bffec11
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / ApplicationName.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\ApplicationName.
5  */
6
7 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
8
9 use \Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
10
11 /**
12  * Provides a plugin for the 'application:name' meta tag.
13  *
14  * @MetatagTag(
15  *   id = "application_name",
16  *   label = @Translation("Application name"),
17  *   description = @Translation("The default name displayed with the pinned sites tile (or icon). Set the content attribute to the desired name."),
18  *   name = "application-name",
19  *   group = "windows_mobile",
20  *   weight = 94,
21  *   type = "string",
22  *   secure = FALSE,
23  *   multiple = FALSE
24  * )
25  */
26 class ApplicationName extends MetaNameBase {
27   // Nothing here yet. Just a placeholder class for a plugin.
28 }