it-blaster / uploadable-bundle
The extended Symfony's Form File Type based on it-blaster/uploadable-behavior
Installs: 6 659
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 8
Forks: 0
Open Issues: 0
Requires
- php: >=5.3.2
- it-blaster/uploadable-behavior: 1.1.*
- symfony/framework-bundle: ~2.1
This package is not auto-updated.
Last update: 2024-10-23 16:12:52 UTC
README
The extended Symfony's Form File Type based on it-blaster/uploadable-behavior.
It provides the ability to easily upload files, show links to them and display checkbox-controls for deletion them (only from database) in your forms.
Installation
Add it-blaster/uploadable-bundle to your composer.json
file and run composer
... "require": { "it-blaster/uploadable-bundle": "1.0.*" } ...
Register the bundle in your AppKernel.php
... new Fenrizbes\UploadableBundle\FenrizbesUploadableBundle(), ...
Configure it-blaster/uploadable-behavior
Usage
Now you can use the uploadable
form type:
... ->add('MyFile', 'uploadable') ...
This type inherits all the file
type's options (except constraints
) and has own ones:
removable
(boolean, default: true) - display or not the checkbox-control for deletionremove_label
(string, default: 'remove') - the label for checkbox-control (if it's enabled)file_constraints
(array, default: null) - constraints for thefile
field
Configuration
The bundle has an only parameter root_path
that determines the path to the project's root directory.
Default value is %kernel.root_dir%/../web
. You can configure it in your config.yml
as follows:
... fenrizbes_uploadable: root_path: /your/own/path ...
TODO
- Delete previously uploaded files