You are here

function file_shadowbox_field_formatter_info in Shadowbox 7.4

Implements hook_field_formatter_info().

File

file_shadowbox/file_shadowbox.module, line 14
File Shadowbox, a JavaScript media viewer application for displaying content in a modal dialogue for file field.

Code

function file_shadowbox_field_formatter_info() {
  $formatters = array(
    'file_shadowbox' => array(
      'label' => t('Shadowbox'),
      'field types' => array(
        'file',
      ),
      'settings' => array(
        'icon' => '',
        'image_style' => '',
        'image_link' => '',
        'gallery' => '',
        'compact' => '',
        'title' => '',
        'video_width' => '640',
        'video_height' => '360',
        'video_thumb' => '128',
      ),
    ),
  );
  return $formatters;
}