function hover_preview_field_formatter_info in Hover Preview for ImageCache 7
Same name and namespace in other branches
- 6 hover_preview.module \hover_preview_field_formatter_info()
Implements hook_field_formatter_info().
File
- ./
hover_preview.module, line 32
Code
function hover_preview_field_formatter_info() {
$formatters['hover_preview'] = array(
'label' => t('Hover Preview'),
'field types' => array(
'image',
),
'settings' => array(
'image_style' => '',
'image_link' => '',
'hover_preview_style' => '',
'hover_preview_action' => '',
),
);
return $formatters;
}