Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
For a good example of this module being used, see the Redmine Issues module by the same maintainer.
IMPORTANT: This module creates a user profile field for caching the logged in user's API key. This is only used if your Redmine version is prior to 2.2.0, before user masquerading via HTTP headers was available as an option, so if you are using 2.2.0+ then you can simply delete this field. However, if you are using versions prior to 2.2.0, be aware of two things:
You *must* apply this (very simple) patch to Redmine so it can look up user API keys (which is infinitely preferable to httpauth).
Have you ever felt annoyed for uploading only one file at a time to IMCE? This module gives you a new way to upload files using IMCE.
Basically, this module provides a simple API to allow other modules register to IMCE Upload form, so user can choose the needed uploader in IMCE Profile form. That means you can have lot of uploaders in the system and you can choose which profile uses which uploader.
Besides that, It also provides the Plupload uploader as a plugin (in this module) to allow uploading multiple files at a time. If you want to use it, just select "IMCE Uploader - Plupload" the module list and enable it.
Implementation
This module uses hook_form_FORM_ID_alter() to alter the IMCE Profile form
(imce_profile_form) to manage the uploaders.
Integration
Feel free to integrate your uploader using my API. There are only 2 functions
you should know
- hook_imce_uploader(): Register your uploaders.
- hook_imce_uploader_alter(): Change the list of registered uploaders.
You can see the file imce_uploader.api.php and my plugin for more information.