function theme_imceimage_formatter_default in Imce CCK Image 6
Same name and namespace in other branches
- 6.2 imceimage.module \theme_imceimage_formatter_default()
displays the image as an img
File
- ./
imceimage.module, line 383
Code
function theme_imceimage_formatter_default($element) {
$item = $element['#item'];
$field = $element['#field_name'];
$delta = $element['#delta'];
$id = "imceimage-" . $field;
if ($item['imceimage_path']) {
return theme_imceimage_image($item['imceimage_path'], $item['imceimage_width'], $item['imceimage_height'], $item['imceimage_alt'], $item['imceimage_title'], $id);
}
else {
return '';
}
}