c3c854878c29874dba1b299eb39bd35c6b7c85de
[yaffs-website] / web / modules / contrib / metatag / metatag_open_graph / src / Plugin / metatag / Tag / OgImageSecureUrl.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:image:secure_url' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "og_image_secure_url",
12  *   label = @Translation("Image Secure URL"),
13  *   description = @Translation("The secure URL (HTTPS) of an image which should represent the content. The image must be at least 50px by 50px and have a maximum aspect ratio of 3:1. Supports PNG, JPEG and GIF formats. All 'http://' URLs will automatically be converted to 'https://'."),
14  *   name = "og:image:secure_url",
15  *   group = "open_graph",
16  *   weight = 11,
17  *   type = "image",
18  *   secure = TRUE,
19  *   multiple = FALSE
20  * )
21  */
22 class OgImageSecureUrl extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }