You are here

function isbn_field_is_empty in ISBN Field 7

Implements hook_field_is_empty().

File

./isbn.module, line 64
Maintains a consistant relationship between nodes and ISBNs.

Code

function isbn_field_is_empty($item, $field) {
  return empty($item['isbn']);
}