You are here

function uc_order_condition_is_shippable in Ubercart 8.4

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

Checks that the order is shippable.

File

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

Code

function uc_order_condition_is_shippable($order, $settings) {
  return $order
    ->isShippable();
}