function taxonomy_field_is_empty

Implements hook_field_is_empty().

File

drupal/modules/taxonomy/taxonomy.module, line 1561
Enables the organization of content into categories.

Code

function taxonomy_field_is_empty($item, $field) {
  if (!is_array($item) || empty($item['tid']) && (string) $item['tid'] !== '0') {
    return TRUE;
  }
  return FALSE;
}