You are here

README.txt in IMCE Uploader 7

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, I also provide 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 the list of 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.

--------------------------------------------------------------------------------
Dependencies:
--------------------------------------------------------------------------------

- IMCE
- Plupload (for the Plupload plugin inside this module)

--------------------------------------------------------------------------------
Installation:
--------------------------------------------------------------------------------

Download the module and simply copy it into your contributed modules folder:
[for example, your_drupal_path/sites/all/modules] and enable it from the
modules administration/management page.
More information at: Installing contributed modules (Drupal 7).

--------------------------------------------------------------------------------
Configuration
--------------------------------------------------------------------------------

After successful installation, you need to go the profile that need to use
new file uploader. Then choose the needed uploader in the list. You can choose
any uploaders you want, even the default of IMCE.

File

README.txt
View source
  1. Have you ever felt annoyed for uploading only one file at a time to IMCE? This
  2. module gives you a new way to upload files using IMCE.
  3. Basically, this module provides a simple API to allow other modules register to
  4. IMCE Upload form, so user can choose the needed uploader in IMCE Profile form.
  5. That means you can have lot of uploaders in the system and you can choose which
  6. profile uses which uploader.
  7. Besides that, I also provide the Plupload uploader as a plugin (in this module)
  8. to allow uploading multiple files at a time. If you want to use it, just select
  9. "IMCE Uploader - Plupload" the module list and enable it.
  10. --------------------------------------------------------------------------------
  11. Implementation:
  12. --------------------------------------------------------------------------------
  13. This module uses hook_form_FORM_ID_alter() to alter the IMCE Profile form
  14. (imce_profile_form) to manage the uploaders.
  15. --------------------------------------------------------------------------------
  16. Integration:
  17. --------------------------------------------------------------------------------
  18. Feel free to integrate your uploader using my API. There are only 2 functions
  19. you should know
  20. - hook_imce_uploader(): Register the list of your uploaders.
  21. - hook_imce_uploader_alter(): Change the list of registered uploaders.
  22. You can see the file imce_uploader.api.php and my plugin for more information.
  23. --------------------------------------------------------------------------------
  24. Dependencies:
  25. --------------------------------------------------------------------------------
  26. - IMCE
  27. - Plupload (for the Plupload plugin inside this module)
  28. --------------------------------------------------------------------------------
  29. Installation:
  30. --------------------------------------------------------------------------------
  31. Download the module and simply copy it into your contributed modules folder:
  32. [for example, your_drupal_path/sites/all/modules] and enable it from the
  33. modules administration/management page.
  34. More information at: Installing contributed modules (Drupal 7).
  35. --------------------------------------------------------------------------------
  36. Configuration
  37. --------------------------------------------------------------------------------
  38. After successful installation, you need to go the profile that need to use
  39. new file uploader. Then choose the needed uploader in the list. You can choose
  40. any uploaders you want, even the default of IMCE.