You are here

function colorbox_field_formatter_info in Colorbox 7

Same name and namespace in other branches
  1. 6 colorbox.module \colorbox_field_formatter_info()
  2. 7.2 colorbox.module \colorbox_field_formatter_info()

Implements hook_field_formatter_info().

File

./colorbox.module, line 400
A light-weight, customizable lightbox plugin for jQuery 1.3

Code

function colorbox_field_formatter_info() {
  return array(
    'colorbox' => array(
      'label' => t('Colorbox'),
      'field types' => array(
        'image',
      ),
      'settings' => array(
        'colorbox_node_style' => '',
        'colorbox_image_style' => '',
        'colorbox_gallery' => 'post',
        'colorbox_gallery_custom' => '',
        'colorbox_caption' => 'auto',
        'colorbox_caption_custom' => '',
      ),
    ),
  );
}