function vcardfield_field_is_empty in VCard Field 7
Implementation of hook_field_is_empty().
File
- ./
vcardfield.module, line 94
Code
function vcardfield_field_is_empty($item, $field) {
if ($field['type'] == 'vcardfield') {
if (empty($item['first_name']) && empty($item['first_name']) && empty($item['email'])) {
return TRUE;
}
}
return FALSE;
}