You are here

YamlFormVideoFile.php in YAML Form 8

File

src/Element/YamlFormVideoFile.php
View source
<?php

namespace Drupal\yamlform\Element;


/**
 * Provides a form element for an 'video_file' element.
 *
 * @FormElement("yamlform_video_file")
 */
class YamlFormVideoFile extends YamlFormManagedFileBase {

  /**
   * {@inheritdoc}
   */
  protected static $accept = 'video/*';

}

Classes

Namesort descending Description
YamlFormVideoFile Provides a form element for an 'video_file' element.