You are here

function sooperthemes_gridstack_field_formatter_info in Sooperthemes GridStack 7

Implements hook_field_formatter_info().

File

./sooperthemes_gridstack.module, line 59
Code for the SooperThemes GridStack feature.

Code

function sooperthemes_gridstack_field_formatter_info() {
  return array(
    'sooperthemes_gridstack_formatter' => array(
      'label' => t('SooperThemes GridStack image formatter'),
      'field types' => array(
        'image',
      ),
      'settings' => array(
        'image_style' => '',
      ),
    ),
  );
}