File.php 992 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Form file element
  8. *
  9. * @author Magento Core Team <core@magentocommerce.com>
  10. */
  11. namespace Magento\Framework\Data\Form\Element;
  12. class File extends \Magento\Framework\Data\Form\Element\AbstractElement
  13. {
  14. /**
  15. * @param \Magento\Framework\Data\Form\Element\Factory $factoryElement
  16. * @param \Magento\Framework\Data\Form\Element\CollectionFactory $factoryCollection
  17. * @param \Magento\Framework\Escaper $escaper
  18. * @param array $data
  19. */
  20. public function __construct(
  21. \Magento\Framework\Data\Form\Element\Factory $factoryElement,
  22. \Magento\Framework\Data\Form\Element\CollectionFactory $factoryCollection,
  23. \Magento\Framework\Escaper $escaper,
  24. $data = []
  25. ) {
  26. parent::__construct($factoryElement, $factoryCollection, $escaper, $data);
  27. $this->setType('file');
  28. $this->setExtType('file');
  29. }
  30. }