You are here

function picture_field_formatter_view in Picture 7.2

Same name and namespace in other branches
  1. 7 picture.module \picture_field_formatter_view()

Implements hook_field_formatter_view().

File

./picture.module, line 853
Picture formatter.

Code

function picture_field_formatter_view($entity_type, $entity, $field, $instance, $langcode, $items, $display) {
  $function = "picture_field_formatter_{$display['type']}_view";
  return $function($entity_type, $entity, $field, $instance, $langcode, $items, $display);
}