Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / metatag / metatag_open_graph / src / Plugin / metatag / Tag / BookReleaseDate.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 'book:release_date' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "book_release_date",
12  *   label = @Translation("Release Date"),
13  *   description = @Translation("The date the book was released."),
14  *   name = "book:release_date",
15  *   group = "open_graph",
16  *   weight = 37,
17  *   type = "date",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class BookReleaseDate extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }