You are here

function CurrencyAmountViewsHandlerField::option_definition in Currency 7.2

Overrides parent::option_definition().

Overrides views_handler_field::option_definition

File

currency/includes/CurrencyAmountViewsHandlerField.inc, line 64
Contains class CurrencyAmountViewsHandlerField.

Class

CurrencyAmountViewsHandlerField
A Views field handler for currency amounts.

Code

function option_definition() {
  $options = parent::option_definition();

  // Whether to round amounts.
  $options['currency_round'] = array(
    'default' => FALSE,
  );
  return $options;
}