You are here

function uc_order_condition_is_shippable in Ubercart 7.3

Same name and namespace in other branches
  1. 8.4 uc_order/uc_order.rules.inc \uc_order_condition_is_shippable()
  2. 5 uc_order/uc_order_workflow.inc \uc_order_condition_is_shippable()
  3. 6.2 uc_order/uc_order.ca.inc \uc_order_condition_is_shippable()

Checks that the order is shippable.

1 string reference to 'uc_order_condition_is_shippable'
uc_order_rules_condition_info in uc_order/uc_order.rules.inc
Implements hook_rules_condition_info().

File

uc_order/uc_order.rules.inc, line 667
Hooks and functions for uc_order Rules integration.

Code

function uc_order_condition_is_shippable($order, $settings) {
  return uc_order_is_shippable($order);
}