Download the PHP package nepada/file-upload-control without Composer
On this page you can find all versions of the php package nepada/file-upload-control. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package file-upload-control
File Upload form control
Installation
Via Composer:
Register and configure container extension
The only required configuration option is uploadDirectory
, which determines where are the uploaded files temporarily stored.
Add factory method to your forms
Option A: install form container extension method via DI extension
This will register extension method addFileUpload($name, $label = null): FileUploadControl
to Nette\Forms\Container
.
Option B: use trait in your base form/container class
You can also use FileUploadControlMixin
trait in your base form/container class to add method addFileUpload($name, $label = null): FileUploadControl
. You need to inject FileUploadControlFactory
into every form/container you create, e.g. by combination of a common form factory service and decorator configuration for enabling injects.
Example:
Usage
FileUploadControl
provides a way to upload files similarly to the standard Nette\Forms\Controls\UploadControl
. The main difference is that the files are uploaded in chunks via AJAX requests into the temporary storage. This means you can upload multiple large files without the risk of running into server-side file/POST size limits. After submitting the form, the form control's value is set to a list of FileUpload
instances of previously uploaded files in temporary storage.
Configuration
The DI extension supports to following configuration options:
The package includes templates and styles build for Bootstrap version 4 and version 5. By default, version 4 is used, but to improve forward compatibility you should always explicitly specify which version you'd like to be used:
Validation
All standard Nette file upload related validations work as expected. Furthermore, you can limit the number of allowed uploads by "length" rules.
Client side
This package comes with client side built on top of blueimp-file-upload. It is published as npm package @nepada/file-upload-control.
Using precompiled bundle
Using precompiled bundles is the quick'n'dirty way of getting client side to work.
Building your own bundle
It is highly recommended to install the client side package via nmp and compile your own bundle.
Here is an example script for initialization of file upload control and Nette forms.
If you use Bootstrap 4 or 5, you can easily customize the default look by importing the source SCSS files into your Sass styles:
- variables for overrides
- variables for overrides
All versions of file-upload-control with dependencies
ext-fileinfo Version *
ext-json Version *
latte/latte Version ^3.0.12@dev
nette/application Version ^3.1.9@dev
nette/forms Version ^3.2@dev
nette/http Version ^3.3@dev
nette/utils Version ^4.0.4@dev