You are here

SchemaOrganizationLogo.php in Schema.org Metatag 8.2

File

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

namespace Drupal\schema_organization\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'logo' 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_logo",
 *   label = @Translation("logo"),
 *   description = @Translation("The logo for this organization."),
 *   name = "logo",
 *   group = "schema_organization",
 *   weight = 3,
 *   type = "image",
 *   secure = FALSE,
 *   multiple = FALSE,
 *   property_type = "image_object",
 *   tree_parent = {
 *     "ImageObject",
 *   },
 *   tree_depth = -1,
 * )
 */
class SchemaOrganizationLogo extends SchemaNameBase {

}

Classes

Namesort descending Description
SchemaOrganizationLogo Provides a plugin for the 'logo' meta tag.