You are here

function socialfield_field_is_empty in Social field 7

Implements hook_field_is_empty().

File

./socialfield.module, line 509
Provides a field for adding social services links.

Code

function socialfield_field_is_empty($item, $field) {
  return empty($item['service']) || $item['url'] === '';
}