You are here

function uc_order_condition_order_total_submit in Ubercart 5

File

uc_order/uc_order_workflow.inc, line 209
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_order_total_submit($form_id, $form_values) {
  $array = array(
    'order_total_comparison' => $form_values['order_total_comparison'],
    'order_total_value' => $form_values['order_total_value'],
  );
  return $array;
}