You are here

function commerce_price_table_field_widget_info in Commerce Price Table 7

Implements hook_field_widget_info().

File

./commerce_price_table.module, line 31

Code

function commerce_price_table_field_widget_info() {
  return array(
    'commerce_price_table_multiple' => array(
      'label' => t('Price table'),
      'field types' => array(
        'commerce_price_table',
      ),
      'settings' => array(
        'currency_code' => 'default',
      ),
    ),
  );
}