function imceimage_content_is_empty in Imce CCK Image 6
Same name and namespace in other branches
- 6.2 imceimage.module \imceimage_content_is_empty()
implementation of hook_content_is_empty..
File
- ./
imceimage.module, line 112
Code
function imceimage_content_is_empty($item, $field) {
return $item['imceimage_path'] == '' && $item['imceimage_width'] == '' && $item['imceimage_height'] == '' && $item['imceimage_alt'] == '' && $item['imceimage_title'] == '';
}