You are here

function uc_product_handler_field_price::option_definition in Ubercart 6.2

Same name and namespace in other branches
  1. 7.3 uc_product/views/uc_product_handler_field_price.inc \uc_product_handler_field_price::option_definition()

Overrides views_handler::option_definition().

File

uc_product/views/uc_product_handler_field_price.inc, line 16
Views handler: Product price field.

Class

uc_product_handler_field_price
Returns a formatted price value to display in the View.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['format'] = array(
    'default' => 'uc_price',
  );
  $options['revision'] = array(
    'default' => 'themed',
  );
  return $options;
}