You are here

function image_shadowbox_field_formatter_info in Shadowbox 7.4

Implements hook_field_formatter_info().

File

image_shadowbox/image_shadowbox.module, line 12
Image Shadowbox, a JavaScript media viewer application for displaying content in a modal dialogue for image field.

Code

function image_shadowbox_field_formatter_info() {
  $formatters = array(
    'image_shadowbox' => array(
      'label' => t('Shadowbox'),
      'field types' => array(
        'image',
      ),
      'settings' => array(
        'image_style' => '',
        'image_link' => '',
        'gallery' => '',
        'compact' => '',
        'title' => '',
      ),
    ),
  );
  return $formatters;
}