You are here

SchemaMovieMusicBy.php in Schema.org Metatag 8

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

File

schema_movie/src/Plugin/metatag/Tag/SchemaMovieMusicBy.php
View source
<?php

namespace Drupal\schema_movie\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'schema_movie_music_by' 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_movie_music_by",
 *   label = @Translation("musicBy"),
 *   description = @Translation("The composer of the work."),
 *   name = "musicBy",
 *   group = "schema_movie",
 *   weight = 15,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = TRUE
 * )
 */
class SchemaMovieMusicBy extends SchemaPersonOrgBase {

}

Classes

Namesort descending Description
SchemaMovieMusicBy Provides a plugin for the 'schema_movie_music_by' meta tag.