I created a module that uses the standard Drupal file attachments instead of a CCK ImageField which should be easy to integrate with your module. With the addition there is no required dependency anymore to CCK, a simple Drupal node with some files attached is sufficient.
Let me know if you're interrested, then I will provide a patch for you against HEAD.
(btw, the only modification to your module I had to make was removing the CCK dependency, as I dont use CCK)
Comments
Comment #1
nvoyageur commentedThis sounds interesting, do you have a working example?
Comment #2
Anonymous (not verified) commentedYep, you can take a look at it here:
http://unlimiteddesigncontest.nl/en/category/form
The top section (with fading images) is a node with image attachments. This is mostly accomplished by the following piece of code:
And some config settings on the content element's settings page:
It should be fairly easy to integrate this with the jquery_slideshow module, or provide it as a contributed submodule.
Comment #3
nvoyageur commentedIf this was made a sub-module, then I'm sure how we would get around the requirements for CCK and ImageField for the main module. Any ideas?