You are here

SchemaArticleDatePublished.php in Schema.org Metatag 8.2

File

schema_article/src/Plugin/metatag/Tag/SchemaArticleDatePublished.php
View source
<?php

namespace Drupal\schema_article\Plugin\metatag\Tag;

use Drupal\schema_metatag\Plugin\metatag\Tag\SchemaNameBase;

/**
 * Provides a plugin for the 'datePublished' meta tag.
 *
 * - 'id' should be a globally unique id.
 * - 'name' should match the Schema.org element name.
 * - 'group' should match the id of the group that defines the Schema.org type.
 *
 * @MetatagTag(
 *   id = "schema_article_date_published",
 *   label = @Translation("datePublished"),
 *   description = @Translation("REQUIRED BY GOOGLE. Date the article was published."),
 *   name = "datePublished",
 *   group = "schema_article",
 *   weight = 3,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = FALSE,
 *   property_type = "date",
 *   tree_parent = {},
 *   tree_depth = -1,
 * )
 */
class SchemaArticleDatePublished extends SchemaNameBase {

}

Classes

Namesort descending Description
SchemaArticleDatePublished Provides a plugin for the 'datePublished' meta tag.