You are here

function theme_imceimage_formatter_default in Imce CCK Image 6.2

Same name and namespace in other branches
  1. 6 imceimage.module \theme_imceimage_formatter_default()

Display the image as an img.

File

./imceimage.module, line 402

Code

function theme_imceimage_formatter_default($element) {
  $item = $element['#item'];
  $field = $element['#field_name'];
  $delta = $element['#delta'];
  $class = "imceimage-" . $field;
  if ($item['imceimage_path']) {
    return _imceimage_image_html($item, $class);
  }
  else {
    return '';
  }
}