You are here

SchemaEventOrganizer.php in Schema.org Metatag 8

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

File

schema_event/src/Plugin/metatag/Tag/SchemaEventOrganizer.php
View source
<?php

namespace Drupal\schema_event\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'organizer' 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_event_organizer",
 *   label = @Translation("organizer"),
 *   description = @Translation("RECOMMENDED BY GOOGLE. The organizer of the event."),
 *   name = "organizer",
 *   group = "schema_event",
 *   weight = 10,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class SchemaEventOrganizer extends SchemaPersonOrgBase {

}

Classes

Namesort descending Description
SchemaEventOrganizer Provides a plugin for the 'organizer' meta tag.