You are here

OgImageUrl.php in Metatag 8

File

metatag_open_graph/src/Plugin/metatag/Tag/OgImageUrl.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:image:url' meta tag.
 *
 * @MetatagTag(
 *   id = "og_image_url",
 *   label = @Translation("Image URL"),
 *   description = @Translation("A alternative version of og:image and has exactly the same requirements; only one needs to be used."),
 *   name = "og:image:url",
 *   group = "open_graph",
 *   weight = 10,
 *   type = "image",
 *   secure = FALSE,
 *   multiple = TRUE,
 *   absolute_url = TRUE
 * )
 */
class OgImageUrl extends MetaPropertyBase {

}

Classes

Namesort descending Description
OgImageUrl Provides a plugin for the 'og:image:url' meta tag.