Closed (fixed)
Project:
Insert
Version:
6.x-1.1
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
17 Nov 2011 at 04:37 UTC
Updated:
6 Sep 2012 at 05:06 UTC
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
Comment #1
quicksketchAny 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.
Comment #2
quicksketch