You are here

function ad_field_formatter_info in Advertisement 7.3

Implements hook_field_formatter_info().

File

./ad.field.inc, line 6

Code

function ad_field_formatter_info() {

  // A simple formatter which links the image to the destination URLs, if any.
  $formatters = array(
    'ad_image' => array(
      'label' => t('Ad Image'),
      'field types' => array(
        'image',
      ),
    ),
  );
  return $formatters;
}