You are here

SchemaArticleReview.php in Schema.org Metatag 8

Same filename and directory in other branches
  1. 8.2 schema_article/src/Plugin/metatag/Tag/SchemaArticleReview.php

File

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

namespace Drupal\schema_article\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'schema_article_review' 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_review",
 *   label = @Translation("review"),
 *   description = @Translation("Reviews of this item."),
 *   name = "review",
 *   group = "schema_article",
 *   weight = 11,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = TRUE
 * )
 */
class SchemaArticleReview extends SchemaReviewBase {

}

Classes

Namesort descending Description
SchemaArticleReview Provides a plugin for the 'schema_article_review' meta tag.