You are here

function uc_order_action_set_status_submit in Ubercart 7.3

Submit callback: selects the order status to be used.

File

uc_order/uc_order.module, line 2400

Code

function uc_order_action_set_status_submit($form, $form_state) {
  return array(
    'status' => $form_state['values']['status'],
    'notify' => $form_state['values']['notify'],
  );
}