function photoswipe_field_formatter_info in PhotoSwipe 7
Same name and namespace in other branches
- 6 photoswipe.module \photoswipe_field_formatter_info()
- 7.2 photoswipe.module \photoswipe_field_formatter_info()
Implements hook_field_formatter_info().
File
- ./
photoswipe.module, line 98 - Photswipe integration with Drupal module.
Code
function photoswipe_field_formatter_info() {
return array(
'photoswipe' => array(
'label' => t('Photoswipe'),
'field types' => array(
'image',
),
'settings' => array(
'photoswipe_node_style' => '',
'photoswipe_image_style' => '',
),
),
);
}