You are here

function bat_options_field_info in Booking and Availability Management Tools for Drupal 7

Implements hook_field_info().

File

modules/bat_options/bat_options.module, line 44

Code

function bat_options_field_info() {
  return array(
    'bat_options' => array(
      'label' => t('BAT Type Options'),
      'description' => t('BAT Type Options.'),
      'settings' => array(),
      'default_widget' => 'bat_options_combined',
      'default_formatter' => 'bat_options_default',
      'property_type' => 'bat_options',
      'property_callbacks' => array(
        'bat_options_property_info_callback',
      ),
    ),
  );
}