Same name and namespace in other branches
  1. 7.x-1.x colorbox.module \colorbox_field_formatter_info() 1 comment

Implements hook_field_formatter_info().

File

./colorbox.module, line 309

Code

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