You are here

function uc_order_condition_check_order_state in Ubercart 6.2

Check the current order state.

See also

uc_order_condition_check_order_state_form()

1 string reference to 'uc_order_condition_check_order_state'
uc_order_ca_condition in uc_order/uc_order.ca.inc
Implements hook_ca_condition().

File

uc_order/uc_order.ca.inc, line 396
This file contains the Conditional Actions hooks and functions necessary to make the order related entity, conditions, events, and actions work.

Code

function uc_order_condition_check_order_state($order, $settings) {

  // Return TRUE if the order status matches.
  return uc_order_status_data($order->order_status, 'state') == $settings['order_state'];
}