5ae8a4e87d13904a748995d11a6b4a305801158a
[yaffs-website] / web / modules / contrib / metatag / metatag_open_graph / src / Plugin / metatag / Tag / OgVideoWidth.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:width' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "og_video_width",
12  *   label = @Translation("Video width"),
13  *   description = @Translation("The height of the above video(s). Note: if both the unsecured and secured videos are provided, they should both be the same size."),
14  *   name = "og:video:width",
15  *   group = "open_graph",
16  *   weight = 13,
17  *   type = "integer",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class OgVideoWidth extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }