You are here

OgVideoSecureUrl.php in Metatag 8

File

metatag_open_graph/src/Plugin/metatag/Tag/OgVideoSecureUrl.php
View source
<?php

namespace Drupal\metatag_open_graph\Plugin\metatag\Tag;

use Drupal\metatag\Plugin\metatag\Tag\MetaPropertyBase;

/**
 * Provides a plugin for the 'og:video:secure_url' meta tag.
 *
 * @MetatagTag(
 *   id = "og_video_secure_url",
 *   label = @Translation("Video Secure URL"),
 *   description = @Translation("The secure URL (HTTPS) of an video which should represent the content."),
 *   name = "og:video:secure_url",
 *   group = "open_graph",
 *   weight = 11,
 *   type = "video",
 *   secure = TRUE,
 *   multiple = FALSE,
 *   absolute_url = TRUE
 * )
 */
class OgVideoSecureUrl extends MetaPropertyBase {

}

Classes

Namesort descending Description
OgVideoSecureUrl Provides a plugin for the 'og:video:secure_url' meta tag.