You are here

OgUpdatedTime.php in Metatag 8

File

metatag_open_graph/src/Plugin/metatag/Tag/OgUpdatedTime.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:updated_time' meta tag.
 *
 * @MetatagTag(
 *   id = "og_updated_time",
 *   label = @Translation("Content modification date & time"),
 *   description = @Translation("The date this content was last modified, with an optional time value. Needs to be in <a href='https://en.wikipedia.org/wiki/ISO_8601'>ISO 8601</a> format. Can be the same as the 'Article modification date' tag."),
 *   name = "og:updated_time",
 *   group = "open_graph",
 *   weight = 15,
 *   type = "date",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class OgUpdatedTime extends MetaPropertyBase {

}

Classes

Namesort descending Description
OgUpdatedTime Provides a plugin for the 'og:updated_time' meta tag.