9df80e5b9e49302f4f0c98acda9716ed0c5295b0
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / metatag / Tag / ShortLink.php
1 <?php
2
3 namespace Drupal\metatag\Plugin\metatag\Tag;
4
5 /**
6  * Provides a plugin for the 'shortlink' meta tag.
7  *
8  * @MetatagTag(
9  *   id = "shortlink",
10  *   label = @Translation("Shortlink URL"),
11  *   description = @Translation("A brief URL, often created by a URL shortening service."),
12  *   name = "shortlink",
13  *   group = "advanced",
14  *   weight = 1,
15  *   type = "uri",
16  *   secure = FALSE,
17  *   multiple = FALSE
18  * )
19  */
20 class ShortLink extends LinkRelBase {
21   // Nothing here yet. Just a placeholder class for a plugin.
22 }