You are here

SchemaOrganizationMemberOf.php in Schema.org Metatag 8

File

schema_organization/src/Plugin/metatag/Tag/SchemaOrganizationMemberOf.php
View source
<?php

namespace Drupal\schema_organization\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'schema_organization_member_of' 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_organization_member_of",
 *   label = @Translation("memberOf"),
 *   description = @Translation("An Organization (or ProgramMembership) to which this Organization belongs."),
 *   name = "memberOf",
 *   group = "schema_organization",
 *   weight = 10,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = TRUE
 * )
 */
class SchemaOrganizationMemberOf extends SchemaProgramMembershipBase {

}

Classes

Namesort descending Description
SchemaOrganizationMemberOf Provides a plugin for the 'schema_organization_member_of' meta tag.