You are here

SchemaWebSitePublisher.php in Schema.org Metatag 8

Same filename and directory in other branches
  1. 8.2 schema_web_site/src/Plugin/metatag/Tag/SchemaWebSitePublisher.php

File

schema_web_site/src/Plugin/metatag/Tag/SchemaWebSitePublisher.php
View source
<?php

namespace Drupal\schema_web_site\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'schema_web_site_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_site_publisher",
 *   label = @Translation("publisher"),
 *   description = @Translation("The publisher of the web site."),
 *   name = "publisher",
 *   group = "schema_web_site",
 *   weight = 10,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class SchemaWebSitePublisher extends SchemaPersonOrgBase {

}

Classes

Namesort descending Description
SchemaWebSitePublisher Provides a plugin for the 'schema_web_site_publisher' meta tag.