You are here

SchemaReviewReviewRating.php in Schema.org Metatag 8

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

File

schema_review/src/Plugin/metatag/Tag/SchemaReviewReviewRating.php
View source
<?php

namespace Drupal\schema_review\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'schema_review_review_rating' 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_review_review_rating",
 *   label = @Translation("reviewRating"),
 *   description = @Translation("reviewRating."),
 *   name = "reviewRating",
 *   group = "schema_review",
 *   weight = 11,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = TRUE
 * )
 */
class SchemaReviewReviewRating extends SchemaRatingBase {

}

Classes

Namesort descending Description
SchemaReviewReviewRating Provides a plugin for the 'schema_review_review_rating' meta tag.