You are here

SchemaPersonAddress.php in Schema.org Metatag 8.2

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

File

schema_person/src/Plugin/metatag/Tag/SchemaPersonAddress.php
View source
<?php

namespace Drupal\schema_person\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'schema_person_address' 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_person_address",
 *   label = @Translation("address"),
 *   description = @Translation("Physical address of the person."),
 *   name = "address",
 *   group = "schema_person",
 *   weight = 1,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = FALSE,
 *   property_type = "postal_address",
 *   tree_parent = {
 *     "PostalAddress",
 *   },
 *   tree_depth = 0,
 * )
 */
class SchemaPersonAddress extends SchemaNameBase {

}

Classes

Namesort descending Description
SchemaPersonAddress Provides a plugin for the 'schema_person_address' meta tag.