You are here

function imagezoomer_field_formatter_info in Image Zoomer 7

Implements hook_field_formatter_info().

File

./imagezoomer.module, line 47
Integrate Powerzoomer / Featuredzoom jquery plugins to Drupal 7

Code

function imagezoomer_field_formatter_info() {
  return array(
    'powerzoomer' => array(
      'label' => t('Power Zoomer'),
      'field types' => array(
        'image',
      ),
      'settings' => array(
        'imagezoomer_power_image_style_display' => 'medium',
        'imagezoomer_power_image_style_zooming' => 'original',
      ),
    ),
    'featuredzoomer' => array(
      'label' => t('Featured Zoomer'),
      'field types' => array(
        'image',
      ),
      'settings' => array(
        'imagezoomer_featured_image_style_display' => 'medium',
        'imagezoomer_featured_image_style_zooming' => 'original',
      ),
    ),
  );
}