1.20.x taxonomy.module | taxonomy_field_is_empty($item, $field) |
Implements hook_field_is_empty().
File
- modules/
taxonomy/ taxonomy.module, line 1592 - 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;
}