function dxpr_gridstack_field_formatter_info in DXPR GridStack 7
Implements hook_field_formatter_info().
File
- ./
dxpr_gridstack.module, line 59 - Code for the DXPR GridStack feature.
Code
function dxpr_gridstack_field_formatter_info() {
return array(
'dxpr_gridstack_formatter' => array(
'label' => t('DXPR GridStack image formatter'),
'field types' => array(
'image',
),
'settings' => array(
'image_style' => '',
),
),
);
}