You are here

function video_field_is_empty in Video 7

Same name and namespace in other branches
  1. 7.2 video.field.inc \video_field_is_empty()

Implements hook_field_is_empty().

File

./video.field.inc, line 240
Implement an video field, based on the file module's file field.

Code

function video_field_is_empty($item, $field) {
  return file_field_is_empty($item, $field);
}