t('Balance: @balance', array('@balance' => uc_currency_format(uc_payment_balance($order)))));
$build['view_payments'] = array(
'#markup' => ' (' . l(t('View'), 'admin/store/orders/' . $order->order_id . '/payments') . ')',
'#suffix' => '
',
);
}
$method_name = _uc_payment_method_data($order->payment_method, 'review');
if (empty($method_name)) {
$method_name = _uc_payment_method_data($order->payment_method, 'name');
}
$build['method'] = array('#markup' => t('Method: @payment_method', array('@payment_method' => $method_name)));
$func = _uc_payment_method_data($order->payment_method, 'callback');
if (function_exists($func)) {
$method_output = $func('order-view', $order);
if (!empty($method_output)) {
$build['output'] = $method_output + array(
'#prefix' => '
',
);
}
}
return $build;
case 'customer':
$method_name = _uc_payment_method_data($order->payment_method, 'review');
if (empty($method_name)) {
$method_name = _uc_payment_method_data($order->payment_method, 'name');
}
$build['method'] = array('#markup' => t('Method: @payment_method', array('@payment_method' => $method_name)));
$func = _uc_payment_method_data($order->payment_method, 'callback');
if (function_exists($func)) {
$method_output = $func('customer-view', $order);
if (!empty($method_output)) {
$build['output'] = $method_output + array(
'#prefix' => '
',
);
}
}
return $build;
case 'edit-form':
drupal_add_library('system', 'drupal.progress');
drupal_add_js(array('defPaymentMsg' => ''), 'setting');
$form['payment'] = array();
$methods = _uc_payment_method_list();
$options = array();
foreach ($methods as $method) {
$options[$method['id']] = $method['name'];
}
$form['payment']['payment_method'] = array(
'#type' => 'select',
'#title' => t('Payment method'),
'#default_value' => $order->payment_method,
'#options' => !empty($options) ? $options : array(t('None available')),
'#attributes' => array('onchange' => "add_order_save_hold(); get_payment_details(Drupal.settings.ucURL.adminOrders + '" . $order->order_id . "/payment_details/' + this.value);"),
'#disabled' => empty($options),
);
return $form;
case 'edit-theme':
drupal_add_js(drupal_get_path('module', 'uc_payment') . '/uc_payment.js');
// build a JS array of our payment methods
$methods = _uc_payment_method_list();
$method_array_js = array();
foreach ($methods as $method) {
$method_array_js[$method['name']] = $method['id'];
}
drupal_add_js(array('methods' => $method_array_js), 'setting');
// begin the order lock, also get payment details
drupal_add_js(array('ucOrderInitiate' => TRUE), 'setting');
$output = '
' . $title . ': | ' . drupal_render($form['payment'][$field]) . ' |