You are here

SchemaServiceOffers.php in Schema.org Metatag 8.2

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

File

schema_service/src/Plugin/metatag/Tag/SchemaServiceOffers.php
View source
<?php

namespace Drupal\schema_service\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'offers' 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_service_offers",
 *   label = @Translation("offers"),
 *   description = @Translation("Offers associated with the service."),
 *   name = "offers",
 *   group = "schema_service",
 *   weight = 6,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = TRUE,
 *   property_type = "offer",
 *   tree_parent = {
 *     "Offer",
 *   },
 *   tree_depth = 0,
 * )
 */
class SchemaServiceOffers extends SchemaNameBase {

}

Classes

Namesort descending Description
SchemaServiceOffers Provides a plugin for the 'offers' meta tag.