SchemaWebPagePublisher.php in Schema.org Metatag 8.2
Same filename and directory in other branches
File
schema_web_page/src/Plugin/metatag/Tag/SchemaWebPagePublisher.phpView source
<?php
namespace Drupal\schema_web_page\Plugin\metatag\Tag;
use Drupal\schema_metatag\Plugin\metatag\Tag\SchemaNameBase;
/**
* Provides a plugin for the 'publisher' 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_publisher",
* label = @Translation("publisher"),
* description = @Translation("Publisher of the web page."),
* name = "publisher",
* group = "schema_web_page",
* weight = 3,
* type = "string",
* secure = FALSE,
* multiple = FALSE,
* property_type = "organization",
* tree_parent = {
* "Person",
* "Organization",
* },
* tree_depth = 0,
* )
*/
class SchemaWebPagePublisher extends SchemaNameBase {
}
Classes
Name | Description |
---|---|
SchemaWebPagePublisher | Provides a plugin for the 'publisher' meta tag. |