VichUploaderBundle reference
28 November 2022 (Updated 10 February 2024)
In a nutshell
VichUploaderBundle is a Symfony bundle that provides an easy way to link file uploads with ORM entities or MongoDB ODM documents.
Its features include:
- Set the file in the entity as an instance of
Symfony\Component\HttpFoundation\File\File
when the entity is loaded from the datastore. - Delete the file from the file system when the entity/document is removed from the datastore.
- Templating helpers to generate public URLs to the file.
Usage
1. Install and register bundle
Install package:
Register (if not using Symfony Flex):
2. Configure persistence engine
3. Configure an upload mapping
You need to define three things as a minimum:
<mapping-name>
:products
in the above example.uri_prefix
: The public web path to the upload destination – the URL that users will be able to access files from.upload_destination
: The location on the server the files should be uploaded.
4. Link the upload mapping to an entity
Create a link between the filesystem and an entity by adding an Uploadable
annotation to an entity. This is like a flag that tells the bundle that a given entity contains uploadable fields.
Next, add two fields:
- Create a persistent field (e.g.,
imageName
) that will be stored in the database as a string. This will contain the filename of the uploaded file. - Create a non-persistent (e.g.,
imageFile
) that will store theUploadedFile
object after the form is submitted. This shouldn’t be persisted in the database, but you must annotate it.
Here’s an example entity that contains all the above:
5. Configure the lifecycle events (optional)
You can configure when files should be removed using the below configuration options:
delete_on_remove
: defaulttrue
, should the file be deleted when the entity is removed ;delete_on_update
: defaulttrue
, should the file be deleted when a new file is uploaded ;inject_on_load
: defaultfalse
, should the file be injected into the uploadable entity when it is loaded from the data store. The object will be an instance ofSymfony\Component\HttpFoundation\File\File
.
Other notes
- Configuration is usually at
config/packages/vich_uploader.yaml
. - You can use helper functions generate public URLs
Sources
Tagged:
Symfony
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment