You are here

function zurb_twentytwenty_field_formatter_info in ZURB TwentyTwenty 7

Implementation of hook_field_formatter_info().

Return value

array

File

./zurb_twentytwenty.module, line 24

Code

function zurb_twentytwenty_field_formatter_info() {
  $formatters = array(
    'twentytwenty' => array(
      'label' => t('Zurb TwentyTwenty'),
      'field types' => array(
        'image',
      ),
      'settings' => array(
        'image_style' => '',
        'default_offset_pct' => '0.5',
      ),
    ),
  );
  return $formatters;
}