dd49eedf5d545eb356244b6f8d2557440e6ffc51
[yaffs-website] / web / modules / contrib / metatag / metatag_open_graph / src / Plugin / metatag / Tag / OgUrl.php
1 <?php
2
3 namespace Drupal\metatag_open_graph\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaPropertyBase;
6
7 /**
8  * The Open Graph "URL" meta tag.
9  *
10  * @MetatagTag(
11  *   id = "og_url",
12  *   label = @Translation("Page URL"),
13  *   description = @Translation("Preferred page location or URL to help eliminate duplicate content for search engines, e.g., <em>http://www.imdb.com/title/tt0117500/</em>."),
14  *   name = "og:url",
15  *   group = "open_graph",
16  *   weight = 3,
17  *   type = "uri",
18  *   secure = FALSE,
19  *   multiple = FALSE,
20  *   absolute_url = TRUE
21  * )
22  */
23 class OgUrl extends MetaPropertyBase {
24   // Nothing here yet. Just a placeholder class for a plugin.
25 }