You are here

WebformImageFile.php in Webform 8.5

File

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

namespace Drupal\webform\Element;


/**
 * Provides a webform element for an 'image_file' element.
 *
 * @FormElement("webform_image_file")
 */
class WebformImageFile extends WebformManagedFileBase {

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

}

Classes

Namesort descending Description
WebformImageFile Provides a webform element for an 'image_file' element.