You are here

function _imceimage_image_html in Imce CCK Image 6.2

4 calls to _imceimage_image_html()
imceimage_process in ./imceimage.module
process callback for the imceimage form element, as registered in hook_elements()
theme_imceimage_formatter_default in ./imceimage.module
Display the image as an img.
theme_imceimage_formatter_thumb in ./imceimage.module
Display the image as a link, given the class imceimage-link. (?)
theme_imceimage_formatter_with_caption in ./imceimage.module
Display the image as an img with caption.

File

./imceimage.module, line 300

Code

function _imceimage_image_html($item, $class) {
  return theme_imceimage_image($item['imceimage_path'], $item['imceimage_width'], $item['imceimage_height'], $item['imceimage_alt'], $item['imceimage_title'], $class);
}