b35a0753248c260eed08179c1e4203c6405434c3
[yaffs-website] / web / modules / contrib / metatag / metatag_open_graph / src / Plugin / metatag / Tag / OgUpdatedTime.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  * Provides a plugin for the 'og:updated_time' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "og_updated_time",
12  *   label = @Translation("Content modification date & time"),
13  *   description = @Translation("The date this content was last modified, with an optional time value. Needs to be in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601</a> format. Can be the same as the 'Article modification date' tag."),
14  *   name = "og:updated_time",
15  *   group = "open_graph",
16  *   weight = 15,
17  *   type = "date",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class OgUpdatedTime extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }