You are here

SchemaMoviePotentialAction.php in Schema.org Metatag 7

File

schema_movie/src/SchemaMoviePotentialAction.php
View source
<?php

/**
 * Provides a plugin for the 'schema_movie_potential_action' meta tag.
 */
class SchemaMoviePotentialAction extends SchemaActionBase {

  /**
   * Generate a form element for this meta tag.
   */
  public function getForm(array $options = []) {
    $this->actions = [
      'Action',
      'ConsumeAction',
      'WatchAction',
      'ViewAction',
    ];
    $form = parent::getForm($options);
    return $form;
  }

}

Classes

Namesort descending Description
SchemaMoviePotentialAction Provides a plugin for the 'schema_movie_potential_action' meta tag.