You are here

function collageformatter_field_formatter_info in Collage Formatter 7

Implements hook_field_formatter_info().

File

./collageformatter.module, line 10
Main file for Collage Formatter module.

Code

function collageformatter_field_formatter_info() {
  return array(
    'collageformatter' => array(
      'label' => t('Collage'),
      'field types' => array(
        'image',
      ),
      'settings' => _collageformatter_default_settings(),
      'description' => t('Display multi-value image fields as collage.'),
    ),
  );
}