You are here

function uc_coupon_handler_field_all_orders_total::option_definition in Ubercart Discount Coupons 7.3

Same name and namespace in other branches
  1. 7.2 views/uc_coupon_handler_field_all_orders_total.inc \uc_coupon_handler_field_all_orders_total::option_definition()

Define option default values.

Overrides uc_product_handler_field_price::option_definition

File

views/uc_coupon_handler_field_all_orders_total.inc, line 20
Coupon order total field handler

Class

uc_coupon_handler_field_all_orders_total
@file Coupon order total field handler

Code

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