You are here

function cck_list_field_is_empty in CCK List 8

Same name and namespace in other branches
  1. 7 cck_list.module \cck_list_field_is_empty()

Implements hook_field_is_empty().

File

./cck_list.module, line 72
Defines a field type that outputs data in an unordered or ordered list.

Code

function cck_list_field_is_empty($item, $field) {
  if (empty($item['list'])) {
    return TRUE;
  }
  return FALSE;
}