You are here

function royalslider_field_formatter_info in RoyalSlider Integration 7

Implements hook_field_formatter_info().

File

./royalslider.module, line 771
RoyalSlider module.

Code

function royalslider_field_formatter_info() {
  $return = array();
  $return['royalslider'] = array(
    'label' => t('Royalslider'),
    'description' => t('Display images in a RoyalSlider slideshow.'),
    'field types' => array(
      'image',
    ),
    'settings' => array(
      // All settings stored in option sets.
      'optionset' => 'default',
      // Allow the skin to be overridden per field formatter instance.
      'skin' => '',
      // Allow limiting to max images
      'max' => '#',
    ),
  );
  return $return;
}