You are here

function uc_order_condition_is_shippable in Ubercart 5

Same name and namespace in other branches
  1. 8.4 uc_order/uc_order.rules.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()
1 string reference to 'uc_order_condition_is_shippable'
uc_payment_configuration in payment/uc_payment/uc_payment_workflow.inc

File

uc_order/uc_order_workflow.inc, line 582
This file contains the Workflow-ng hooks and functions necessary to make the order related entity, conditions, events, and actions work.

Code

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