You are here

function imagezoom_gallery_field_formatter_info in Image Zoom 7.2

Implements hook_field_formatter().

File

modules/imagezoom_gallery/imagezoom_gallery.module, line 11
Provides a gallery formatter for the Image Zoom module.

Code

function imagezoom_gallery_field_formatter_info() {
  $formatters = array(
    'imagezoom_gallery' => array(
      'label' => t('Image Zoom Gallery'),
      'field types' => array(
        'image',
      ),
      'settings' => array(
        'imagezoom_zoom_type' => '',
        'imagezoom_display_style' => '',
        'imagezoom_zoom_style' => '',
        'imagezoom_thumb_style' => '',
        'imagezoom_disable' => '',
        'imagezoom_disable_width' => '',
        'imagezoom_additional' => '',
      ),
    ),
  );
  return $formatters;
}