You are here

function uc_fedex_confirm_shipment in FedEx Shipping 7.2

Same name and namespace in other branches
  1. 6.2 uc_fedex.ship.inc \uc_fedex_confirm_shipment()

Last chance for user to review shipment.

See also

theme_uc_fedex_confirm_shipment()

uc_fedex_confirm_shipment_submit()

1 string reference to 'uc_fedex_confirm_shipment'
uc_fedex_menu in ./uc_fedex.module
Implements hook_menu().

File

./uc_fedex.ship.inc, line 286
FedEx Web Services Rate / Available Services Quote.

Code

function uc_fedex_confirm_shipment($form, &$form_state, $order) {
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Generate Label'),
  );
  return $form;
}