You are here

function uc_coupon_handler_field_all_orders_count::option_definition in Ubercart Discount Coupons 7.2

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

Set default value for order_status option.

Overrides views_handler_field_numeric::option_definition

File

views/uc_coupon_handler_field_all_orders_count.inc, line 21
Coupon order total field handler

Class

uc_coupon_handler_field_all_orders_count
@file Coupon order total field handler

Code

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