function image_field_is_empty
Implements hook_field_is_empty().
Archivo
- drupal-7.x/
modules/ image/ image.field.inc, line 277 - Implement an image field, based on the file module's file field.
Código
function image_field_is_empty($item, $field) {
return file_field_is_empty($item, $field);
}