You are here

function bat_options_field_formatter_info in Booking and Availability Management Tools for Drupal 7

Implements hook_field_formatter_info().

File

modules/bat_options/bat_options.module, line 150

Code

function bat_options_field_formatter_info() {
  return array(
    'bat_options_default' => array(
      'label' => t('BAT Options Default'),
      'field types' => array(
        'bat_options',
      ),
    ),
    'bat_options_price' => array(
      'label' => t('BAT Options Price'),
      'field types' => array(
        'bat_options',
      ),
    ),
    'bat_options_admin' => array(
      'label' => t('BAT Options Administrator'),
      'field types' => array(
        'bat_options',
      ),
    ),
  );
}