You are here

function attachment_links_field_formatter_view in Attachment Links 7

Implements hook_field_formatter_view().

File

./attachment_links.field-formatters.inc, line 29
Field formatters for attachment_links module

Code

function attachment_links_field_formatter_view($entity_type, $entity, $field, $instance, $langcode, $items, $display) {
  $elements = array();
  foreach ($items as $delta => $item) {
    $elements[$delta] = array(
      '#markup' => theme('attachment_links_formatter_' . $display['type'], array(
        'element' => $item,
        'field' => $instance,
      )),
    );
  }
  return $elements;
}