Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / metatag / Tag / OriginalSource.php
1 <?php
2
3 namespace Drupal\metatag\Plugin\metatag\Tag;
4
5 /**
6  * The advanced "Original Source" meta tag.
7  *
8  * @MetatagTag(
9  *   id = "original_source",
10  *   label = @Translation("Original source"),
11  *   description = @Translation("Used to indicate the URL that broke the story, and can link to either an internal URL or an external source. If the full URL is not known it is acceptable to use a partial URL or just the domain name."),
12  *   name = "original-source",
13  *   group = "advanced",
14  *   weight = 4,
15  *   type = "uri",
16  *   secure = FALSE,
17  *   multiple = FALSE
18  * )
19  */
20 class OriginalSource extends MetaNameBase {
21   // Nothing here yet. Just a placeholder class for a plugin.
22 }