You are here

SchemaProductSku.php in Schema.org Metatag 8.2

Same filename and directory in other branches
  1. 8 schema_product/src/Plugin/metatag/Tag/SchemaProductSku.php

File

schema_product/src/Plugin/metatag/Tag/SchemaProductSku.php
View source
<?php

namespace Drupal\schema_product\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'sku' 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_product_sku",
 *   label = @Translation("sku"),
 *   description = @Translation("RECOMMENDED BY GOOGLE. Populate one of sku, gtin8, gtin12, gtin13, gtin14, isbn, or mpn."),
 *   name = "sku",
 *   group = "schema_product",
 *   weight = 7,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = FALSE,
 *   property_type = "text",
 *   tree_parent = {},
 *   tree_depth = -1,
 * )
 */
class SchemaProductSku extends SchemaNameBase {

}

Classes

Namesort descending Description
SchemaProductSku Provides a plugin for the 'sku' meta tag.