You are here

function imceimage_content_is_empty in Imce CCK Image 6.2

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

Implements hook_content_is_empty()

File

./imceimage.module, line 116

Code

function imceimage_content_is_empty($item, $field) {
  return $item['imceimage_path'] == '' && $item['imceimage_width'] == '' && $item['imceimage_height'] == '' && $item['imceimage_alt'] == '' && $item['imceimage_title'] == '';
}