Yaffs site version 1.1
[yaffs-website] / web / modules / contrib / metatag / metatag_open_graph / src / Plugin / metatag / Tag / OgVideo.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:video' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "og_video",
12  *   label = @Translation("Video URL"),
13  *   description = @Translation("The URL of an video which should represent the content. For best results use a source that is at least 1200 x 630 pixels in size, but at least 600 x 316 pixels is a recommended minimum. Object types supported include video.episode, video.movie, video.other, and video.tv_show."),
14  *   name = "og:video",
15  *   group = "open_graph",
16  *   weight = 9,
17  *   type = "video",
18  *   secure = FALSE,
19  *   multiple = TRUE
20  * )
21  */
22 class OgVideo extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }