You are here

SchemaProduct.php in Schema.org Metatag 8

Same filename and directory in other branches
  1. 8.2 schema_product/src/Plugin/metatag/Group/SchemaProduct.php

File

schema_product/src/Plugin/metatag/Group/SchemaProduct.php
View source
<?php

namespace Drupal\schema_product\Plugin\metatag\Group;

use Drupal\schema_metatag\Plugin\metatag\Group\SchemaGroupBase;

/**
 * Provides a plugin for the 'Product' meta tag group.
 *
 * @MetatagGroup(
 *   id = "schema_product",
 *   label = @Translation("Schema.org: Product"),
 *   description = @Translation("See Schema.org definitions for this Schema type at <a href="":url"">:url</a>. Also see <a href="":url2"">Google's requirements</a>.", arguments = {
 *     ":url" = "https://schema.org/Product",
 *     ":url2" = "https://developers.google.com/search/docs/data-types/product",
 *   }),
 *   weight = 10,
 * )
 */
class SchemaProduct extends SchemaGroupBase {

}

Classes

Namesort descending Description
SchemaProduct Provides a plugin for the 'Product' meta tag group.