You are here

function tweetbutton_field_formatter_info in Tweet Button 7.2

Implements hook_field_formatter_info().

File

./tweetbutton.module, line 139

Code

function tweetbutton_field_formatter_info() {
  return array(
    'tweetbutton_formatter_button_vertical' => array(
      'label' => t('Tweetbutton style vertical'),
      'field types' => array(
        'tweetbutton',
      ),
      'settings' => array(
        'size' => 'medium',
      ),
    ),
    'tweetbutton_formatter_button_horizontal' => array(
      'label' => t('Tweetbutton style horizontal'),
      'field types' => array(
        'tweetbutton',
      ),
      'settings' => array(
        'size' => 'medium',
      ),
    ),
    'tweetbutton_formatter_button_none' => array(
      'label' => t('Tweetbutton style none'),
      'field types' => array(
        'tweetbutton',
      ),
      'settings' => array(
        'size' => 'medium',
      ),
    ),
  );
}