You are here

function theme_imceimage_formatter_thumb in Imce CCK Image 6.2

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

Display the image as a link, given the class imceimage-link. (?)

File

./imceimage.module, line 357

Code

function theme_imceimage_formatter_thumb($element) {
  $item = $element['#item'];
  $field = $element['#field_name'];
  $delta = $element['#delta'];
  $class = "imceimage-{$field}-thumb";
  $thumb = _imceimage_get_thumb($item);
  return _imceimage_image_html($thumb, $class);
}