Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / WebManifest.php
1 <?php
2
3 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\LinkRelBase;
6
7 /**
8  * The Web Manifest for Progressive Web Apps.
9  *
10  * @MetatagTag(
11  *   id = "web_manifest",
12  *   label = @Translation("Web Manifest"),
13  *   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."),
14  *   name = "manifest",
15  *   group = "mobile",
16  *   weight = 92,
17  *   type = "uri",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class WebManifest extends LinkRelBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }