i like to display additional data from image using imagefield extended module to insert into node body area.If any hook from insert module that i can use to implement the functionality?

Comments

quicksketch’s picture

Any module may implement hook_insert_widgets() to specify which fields that widget provides. Insert will then pick up those fields with JavaScript and make them available as replacements in the insert-image.tpl.php file, which you can override in your theme. Take a look at imagefield_insert_widgets() in includes/imagefield.inc, which could be modified and placed into either a custom module or directly into imagefield_extended.module to make it so that Insert could utilize the fields provided by that module.

quicksketch’s picture

Status: Active » Closed (fixed)