You are here

function rooms_field_widget_info in Rooms - Drupal Booking for Hotels, B&Bs and Vacation Rentals 7

Implements hook_field_widget_info().

File

./rooms.module, line 622
Provides basic underlying functionality and configuration options used by all Rooms modules

Code

function rooms_field_widget_info() {
  return array(
    'rooms_options_combined' => array(
      'label' => t('Combined text field'),
      'field types' => array(
        'rooms_options',
      ),
      'settings' => array(),
    ),
  );
}