File uploader
The file_uploader module provides a framework for integrating third-party JavaScript file uploaders with Drupal's managed file fields. It offers a custom form element and an endpoint for handling uploads, along with a base class for creating new integrations.
A JavaScript file uploader framework. This module provides a set of tools to integrate 3rd party JavaScript based uploaders with Drupal managed file fields. The file_uploader form element provides integration with the Drupal managed file form element. An XHR endpoint at /file-uploader/upload with CSRF and form element protection is available. Integration modules should extend the FileUploaderWidgetBase base field widget. See an existing integration module for a demonstration and more information.
Integrations
Installation
- Download the module:
composer require drupal/file_uploader - Install one of the integration modules OR build a custom integration.
Usage
Refer to the integration modules usage instructions.