You are here

SchemaWebPageHasPart.php in Schema.org Metatag 8.2

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

File

schema_web_page/src/Plugin/metatag/Tag/SchemaWebPageHasPart.php
View source
<?php

namespace Drupal\schema_web_page\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'schema_web_page_has_part' 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_web_page_has_part",
 *   label = @Translation("hasPart"),
 *   description = @Translation("Use for <a href="":url"">Paywalled content</a>.", arguments = {
 *     ":url" = "https://developers.google.com/search/docs/data-types/paywalled-content",
 *   }),
 *   name = "hasPart",
 *   group = "schema_web_page",
 *   weight = 4,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = TRUE,
 *   property_type = "web_page_element",
 *   tree_parent = {
 *     "WebPageElement",
 *   },
 *   tree_depth = 0,
 * )
 */
class SchemaWebPageHasPart extends SchemaNameBase {

}

Classes

Namesort descending Description
SchemaWebPageHasPart Provides a plugin for the 'schema_web_page_has_part' meta tag.