Hi - I am using image_fupload to upload multiple images to a single imagefield in one go. It would be great if insert could work on the Image FUpload form element.

Thanks for a great module.

Comments

whatdoesitwant’s picture

+ one on that one

short of drag and drop uploading, integration of image_fupload with filefield_sources and insert would be the closest thing to the holy grail of wysiwyg usability i can think of. I'm not a programmer but i could test patches. Find me @whatdoesitwant.

zzrwood’s picture

I would also be very happy to help test patches - I have a large site that might provide a good test case. We have tried just about every possible permutation to upload a fairly large numbers of images (usually around 20-30), easily attach them to an article content type - and then use some of the images inline and the rest available through a sideshow.

Thanks for a great module.

rokr’s picture

+1 for this great setup.

Breakerandi’s picture

subscribe

timwood’s picture

sub

gooddesignusa’s picture

sub

spiderman2000’s picture

StatusFileSize
new451 bytes

Here is what you can do:

1. Open insert.module and append this code to the end of the insert_init function:

  // Image_FUpload support
  if (module_exists('image_fupload_imagefield')) {
    module_load_include('inc', 'insert', 'includes/image_fupload_imagefield');
  }

The code above is requiered to initialize the function that actually does the job.

2. Now copy the image_fupload_imagefield.inc file (unzip first) into \modules\insert\includes

3. This should do the trick, at least it did for me. I use Image_FUpload 6.x-3.0-rc2 with ImageField 6.x-3.3 and Insert 6.x-1.0-beta4.

quicksketch’s picture

Project: Insert » Image FUpload
Version: 6.x-1.0-beta2 » 6.x-3.x-dev

I'm moving this to the Image FUpload queue to see what they think over there. I won't be adding support for Image FUpload directly into Insert.

czigor’s picture

Status: Active » Needs review
StatusFileSize
new781 bytes

Patch attached for Insert support.