You are here

YamlFormImageFile.php in YAML Form 8

File

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

namespace Drupal\yamlform\Element;


/**
 * Provides a form element for an 'image_file' element.
 *
 * @FormElement("yamlform_image_file")
 */
class YamlFormImageFile extends YamlFormManagedFileBase {

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

}

Classes

Namesort descending Description
YamlFormImageFile Provides a form element for an 'image_file' element.