You are here

function uc_order_condition_weight_units_options in Ubercart 8.4

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

Weight units options callback.

File

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

Code

function uc_order_condition_weight_units_options() {
  return [
    'lb' => t('Pounds'),
    'kg' => t('Kilograms'),
    'oz' => t('Ounces'),
    'g' => t('Grams'),
  ];
}