You are here

YamlFormImageFile.php in YAML Form 8

File

src/Plugin/YamlFormElement/YamlFormImageFile.php
View source
<?php

namespace Drupal\yamlform\Plugin\YamlFormElement;


/**
 * Provides a 'yamlform_image_file' element.
 *
 * @YamlFormElement(
 *   id = "yamlform_image_file",
 *   label = @Translation("Image file"),
 *   category = @Translation("File upload elements"),
 *   states_wrapper = TRUE,
 * )
 */
class YamlFormImageFile extends YamlFormManagedFileBase {

  /**
   * {@inheritdoc}
   */
  public function getFormats() {
    $formats = parent::getFormats();
    $formats['file'] = $this
      ->t('Image');
    return $formats;
  }

}

Classes

Namesort descending Description
YamlFormImageFile Provides a 'yamlform_image_file' element.