SchemaMovieHasPart.php in Schema.org Metatag 8
Same filename and directory in other branches
Namespace
Drupal\schema_movie\Plugin\metatag\TagFile
schema_movie/src/Plugin/metatag/Tag/SchemaMovieHasPart.phpView source
<?php
namespace Drupal\schema_movie\Plugin\metatag\Tag;
use Drupal\schema_metatag\Plugin\metatag\Tag\SchemaHasPartBase;
/**
* Provides a plugin for the 'schema_movie_has_part' 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_has_part",
* label = @Translation("hasPart"),
* description = @Translation("RECOMMENDED BY GOOGLE. Short videos related to the Movie (use Clip), TVEpisode, TVSeries or TVSeason (use TVClip)."),
* name = "hasPart",
* group = "schema_movie",
* weight = 11,
* type = "string",
* secure = FALSE,
* multiple = TRUE
* )
*/
class SchemaMovieHasPart extends SchemaHasPartBase {
/**
* Generate a form element for this meta tag.
*/
public function form(array $element = []) {
$form = parent::form($element);
// Limit potential actions to WatchAction.
$form['potentialAction']['actionType']['#options'] = [
'ConsumeAction' => 'ConsumeAction',
];
$form['potentialAction']['ConsumeAction']['@type']['#options'] = [
'WatchAction' => $this
->t('WatchAction'),
];
return $form;
}
}
Classes
Name | Description |
---|---|
SchemaMovieHasPart | Provides a plugin for the 'schema_movie_has_part' meta tag. |