You are here

VideoTag.php in Metatag 8

File

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

namespace Drupal\metatag_open_graph\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'video:tag' meta tag.
 *
 * @MetatagTag(
 *   id = "video_tag",
 *   label = @Translation("Tag words"),
 *   description = @Translation("Tag words associated with this video."),
 *   name = "video:tag",
 *   group = "open_graph",
 *   weight = 49,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = TRUE
 * )
 */
class VideoTag extends MetaPropertyBase {

}

Classes

Namesort descending Description
VideoTag Provides a plugin for the 'video:tag' meta tag.