Download the PHP package brezo-it/multi-file-upload without Composer

On this page you can find all versions of the php package brezo-it/multi-file-upload. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package multi-file-upload

Multi File Upload

TYPO3 extension for multi-file upload in the Form Framework.

Features

Requirements

Installation

Usage

Form Editor

  1. Open the TYPO3 Form Editor
  2. Add a new element "Multi Image Upload" from the "Custom" group
  3. Configure allowed MIME types and upload folder as needed

YAML Configuration

Email Finisher

Two pre-configured email finishers with attachment support are available in the Form Editor:

For YAML configuration, use the pre-configured finisher identifiers:

Or override an existing email finisher with the custom implementation class:

Database Finisher (with FAL support)

The standard TYPO3 SaveToDatabase finisher only stores file UIDs, not proper FAL references. This extension provides AttachFilesToRecord which creates sys_file_reference records, making uploaded images visible in the TYPO3 backend.

How it works:

  1. Use the core SaveToDatabase finisher to create the record (without file fields)
  2. Use AttachFilesToRecord to attach files via sys_file_reference records
  3. The finisher reads the record UID from {SaveToDatabase.insertedUids.0}
  4. Images are immediately visible and editable in the TYPO3 backend

Example: Classified Ads / Marketplace Form

AttachFilesToRecord Options:

Option Type Description
table string Target database table
recordUid string UID of the record (use {SaveToDatabase.insertedUids.0})
storagePid int Page ID for sys_file_reference records
elements array Mapping of form elements to database columns

TCA configuration for the images field:

Configuration Options

Form Element Properties

Property Type Default Description
saveToFileMount string 1:/user_upload/ FAL storage path for uploads
allowedMimeTypes array image/jpeg, image/png, image/bmp Allowed file types
imageMaxWidth int 400 Max width for preview images
imageMaxHeight int 400 Max height for preview images
imageLinkMaxWidth int 1200 Max width for lightbox images

Rendering Options (CSS Classes)

Option Default Description
previewListClass row g-3 Container class for image grid
previewItemClass col-md-4 col-lg-3 mb-3 Class for each image item
previewImageWrapperClass card Wrapper class for image card
deleteWrapperClass form-check card-footer Class for delete checkbox wrapper

File Structure

Customization

Custom Styling

The extension's CSS is automatically loaded via <f:asset.css> when the form element is rendered.

To override styles, add your own CSS with higher specificity or use the Asset ViewHelper in your template:

Or include it globally via TypoScript (loaded on all pages):

Custom Templates

Override templates via TypoScript:

Author

Maik Preuss

License

GPL-2.0-or-later


All versions of multi-file-upload with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
typo3/cms-core Version ^13.4
typo3/cms-form Version ^13.4
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package brezo-it/multi-file-upload contains the following files

Loading the files please wait ...