You are here

function uc_order_select_form_submit in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_order/uc_order.module \uc_order_select_form_submit()

Form submission handler for uc_order_select_form().

See also

uc_order_select_form()

File

uc_order/uc_order.admin.inc, line 620
Order administration menu items.

Code

function uc_order_select_form_submit($form, &$form_state) {
  if (uc_order_exists($form_state['values']['order_id'])) {
    drupal_goto('admin/store/orders/' . $form_state['values']['order_id']);
  }
}