You are here

function itweak_upload_field_formatter_info in iTweak Upload 7.3

Implements hook_field_formatter_info().

File

./itweak_upload.module, line 273
iTweakUpload - Tweak attachments display and file upload forms.

Code

function itweak_upload_field_formatter_info() {
  return array(
    'itu_file_table' => array(
      'label' => t('iTweak Upload'),
      'field types' => array(
        'file',
        'image',
      ),
      'settings' => array(
        'files_display_mode' => ITU_DISPLAY_DEFAULT,
        'mime_icon_directory' => ITU_ICON_DIRECTORY_DEFAULT,
        'thumbnail_style' => 'AttachmentThumbnail',
        'show_caption' => FALSE,
        'gallery_type' => _itweak_upload_gallery_type_default(),
        'gallery_limit' => '',
        'image_link_mode' => _itweak_upload_lightbox_link_default(),
        'show_title' => TRUE,
        'open_image_style' => '_original',
      ),
    ),
  );
}