You are here

function video_field_load in Video 7

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

Implements hook_field_load().

File

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

Code

function video_field_load($entity_type, $entities, $field, $instances, $langcode, &$items, $age) {
  if ($field['settings']['autoconversion'] == 1) {

    //load the converted video
  }
  file_field_load($entity_type, $entities, $field, $instances, $langcode, $items, $age);
}