You are here

SchemaOrganization.php in Schema.org Metatag 8.2

Same filename and directory in other branches
  1. 8 schema_organization/src/Plugin/metatag/Group/SchemaOrganization.php

File

schema_organization/src/Plugin/metatag/Group/SchemaOrganization.php
View source
<?php

namespace Drupal\schema_organization\Plugin\metatag\Group;

use Drupal\schema_metatag\Plugin\metatag\Group\SchemaGroupBase;

/**
 * Provides a plugin for the 'Organization' meta tag group.
 *
 * @MetatagGroup(
 *   id = "schema_organization",
 *   label = @Translation("Schema.org: Organization"),
 *   description = @Translation("See Schema.org definitions for this Schema type at <a href="":url"">:url</a>. Also see <a href="":url2"">Google's requirements</a>.", arguments = {
 *     ":url" = "https://schema.org/Organization",
 *     ":url2" = "https://developers.google.com/search/docs/data-types/local-business",
 *   }),
 *   weight = 10,
 * )
 */
class SchemaOrganization extends SchemaGroupBase {

}

Classes

Namesort descending Description
SchemaOrganization Provides a plugin for the 'Organization' meta tag group.