You are here

OgImageWidth.php in Metatag 8

File

metatag_open_graph/src/Plugin/metatag/Tag/OgImageWidth.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:width' meta tag.
 *
 * @MetatagTag(
 *   id = "og_image_width",
 *   label = @Translation("Image width"),
 *   description = @Translation("The width of the above image(s). Note: if both the unsecured and secured images are provided, they should both be the same size."),
 *   name = "og:image:width",
 *   group = "open_graph",
 *   weight = 13,
 *   type = "integer",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class OgImageWidth extends MetaPropertyBase {

}

Classes

Namesort descending Description
OgImageWidth Provides a plugin for the 'og:image:width' meta tag.