You are here

WebformAudioFile.php in Webform 6.x

File

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

namespace Drupal\webform\Element;


/**
 * Provides a webform element for an 'audio_file' element.
 *
 * @FormElement("webform_audio_file")
 */
class WebformAudioFile extends WebformManagedFileBase {

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

}

Classes

Namesort descending Description
WebformAudioFile Provides a webform element for an 'audio_file' element.