Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

[2.1] Form File Upload refactor #2439

Closed
wants to merge 16 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,19 @@
- The initializer for ServiceManagerAwareInterface was removed to prevent
confusion between ServiceManagerAwareInterface and
ServiceLocatorAwareInterface, and to promote using the latter interface.
- File upload functionality has been rewritten and moved out of Zend\File
into Zend\Form and Zend\InputFilter. File elements are now
specified and handled with Zend\Form just like any other form element.
- File upload progress functionality has been moved out of Zend\File into
specific classes under Zend\ProgressBar\Upload based on the type of
handler (APC, UploadProgress module, and Session progress in PHP 5.4).
- New form elements under Zend\Form\Element\File for the various upload
progress identifiers.
- New Zend\Filter\File\RenameUpload filter for securely moving uploaded
files.
- New Zend\Mvc\Controller\Plugin\FilePostRedirectGet plugin for file
upload forms.


## 2.0.2:

Expand Down