You are here

function uc_product_handler_field_display_price::option_definition in Ubercart 7.3

Overrides views_handler::option_definition().

Overrides uc_product_handler_field_price::option_definition

File

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

Class

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

Code

function option_definition() {
  $options = parent::option_definition();
  $options['label']['default'] = t('Price');
  return $options;
}