You are here

function commerce_price_decimals_formatter_views_api in Commerce Price Decimals Formatter 7

Implements hook_views_api().

File

./commerce_price_decimals_formatter.module, line 352
Provides a display formatter for the price field in which you can specify the decimal places are displayed.

Code

function commerce_price_decimals_formatter_views_api() {
  return array(
    'api' => 3,
    'path' => drupal_get_path('module', 'commerce_price_decimals_formatter') . '/includes/views',
  );
}