You are here

function isbn_content_is_empty in ISBN Field 6

Implementation of hook_content_is_empty().

File

./isbn.module, line 276
Defines ISBN field types.

Code

function isbn_content_is_empty($item, $field) {
  if (empty($item['value']) && (string) $item['value'] !== '0') {
    return TRUE;
  }
  return FALSE;
}