You are here

function uc_order_condition_value_operator_options in Ubercart 8.4

Same name and namespace in other branches
  1. 7.3 uc_order/uc_order.rules.inc \uc_order_condition_value_operator_options()

Operator options callback.

File

uc_order/uc_order.rules.inc, line 336
Rules integration for order-related entity events, conditions, and actions.

Code

function uc_order_condition_value_operator_options() {
  return [
    'less' => t('Total is less than specified value.'),
    'less_equal' => t('Total is less than or equal to specified value.'),
    'equal' => t('Total is equal to specified value.'),
    'greater_equal' => t('Total is greater than or equal to specified value.'),
    'greater' => t('Total is greater than specified value.'),
  ];
}