function imagezoom_field_formatter_info in Image Zoom 7.2
Same name and namespace in other branches
- 7 imagezoom.module \imagezoom_field_formatter_info()
Implements hook_field_formatter().
File
- ./
imagezoom.module, line 40 - Provides an Image Zoom field formatter for Image fields.
Code
function imagezoom_field_formatter_info() {
$formatters = array(
'imagezoom' => array(
'label' => t('Image Zoom'),
'field types' => array(
'image',
),
'settings' => array(
'imagezoom_zoom_type' => '',
'imagezoom_display_style' => '',
'imagezoom_zoom_style' => '',
'imagezoom_disable' => '',
'imagezoom_disable_width' => '',
'imagezoom_additional' => '',
),
),
);
return $formatters;
}