You are here

ManagedFile.php in Webform 8.5

Same filename and directory in other branches
  1. 6.x src/Plugin/WebformElement/ManagedFile.php

File

src/Plugin/WebformElement/ManagedFile.php
View source
<?php

namespace Drupal\webform\Plugin\WebformElement;


/**
 * Provides a 'managed_file' element.
 *
 * @WebformElement(
 *   id = "managed_file",
 *   api = "https://api.drupal.org/api/drupal/core!modules!file!src!Element!ManagedFile.php/class/ManagedFile",
 *   label = @Translation("File"),
 *   description = @Translation("Provides a form element for uploading and saving a file."),
 *   category = @Translation("File upload elements"),
 *   states_wrapper = TRUE,
 * )
 */
class ManagedFile extends WebformManagedFileBase {

}

Classes

Namesort descending Description
ManagedFile Provides a 'managed_file' element.