SchemaPlaceAddress.php in Schema.org Metatag 8
Same filename and directory in other branches
Namespace
Drupal\schema_place\Plugin\metatag\TagFile
schema_place/src/Plugin/metatag/Tag/SchemaPlaceAddress.phpView source
<?php
namespace Drupal\schema_place\Plugin\metatag\Tag;
use Drupal\schema_metatag\Plugin\metatag\Tag\SchemaAddressBase;
/**
* Provides a plugin for the 'schema_place_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_place_address",
* label = @Translation("address"),
* description = @Translation("Physical address of the place."),
* name = "address",
* group = "schema_place",
* weight = 1,
* type = "string",
* secure = FALSE,
* multiple = FALSE
* )
*/
class SchemaPlaceAddress extends SchemaAddressBase {
}
Classes
Name | Description |
---|---|
SchemaPlaceAddress | Provides a plugin for the 'schema_place_address' meta tag. |