You are here

function panopoly_widgets_field_formatter_info in Panopoly Widgets 7

Implementation of hook_field_formatter_info().

File

./panopoly_widgets.spotlight.inc, line 106
A specification for the custom spotlight entity that is part of Panopoly Widgets

Code

function panopoly_widgets_field_formatter_info() {
  return array(
    'panopoly_spotlight_default' => array(
      'label' => t('Default'),
      'field types' => array(
        'panopoly_spotlight',
      ),
      'settings' => array(
        'image_style' => 'panopoly_image_spotlight',
      ),
    ),
  );
}