1 image.field.inc image_field_load($entity_type, $entities, $field, $instances, $langcode, &$items, $age)

Implements hook_field_load().

File

core/modules/image/image.field.inc, line 295
Implement an image field, based on the file module's file field.

Code

function image_field_load($entity_type, $entities, $field, $instances, $langcode, &$items, $age) {
  file_field_load($entity_type, $entities, $field, $instances, $langcode, $items, $age);
}