You are here

function commerce_price_table_field_formatter_info in Commerce Price Table 7

Implements hook_field_formatter_info().

File

./commerce_price_table.module, line 46

Code

function commerce_price_table_field_formatter_info() {
  return array(
    'commerce_multiprice_default' => array(
      'label' => t('Price chart'),
      'field types' => array(
        'commerce_price_table',
      ),
      'settings' => array(
        'calculation' => FALSE,
        'price_label' => t('Price'),
        'quantity_label' => t('Quantity'),
        'table_orientation' => t('Orientation'),
      ),
    ),
  );
}