You are here

function cck_time_content_is_empty in CCK Time 6

Implementation of hook_content_is_empty().

File

./cck_time.module, line 283

Code

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