function video_field_is_empty in Video 7.2
Same name and namespace in other branches
- 7 video.field.inc \video_field_is_empty()
Implements hook_field_is_empty().
File
- ./
video.field.inc, line 563 - Implement a 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);
}