function uc_shipping_shipment_delete_confirm in Ubercart 6.2
Same name and namespace in other branches
- 5 shipping/uc_shipping/uc_shipping.module \uc_shipping_shipment_delete_confirm()
- 7.3 shipping/uc_shipping/uc_shipping.admin.inc \uc_shipping_shipment_delete_confirm()
Decides to release packages to be put on another shipment.
See also
uc_shipping_shipment_delete_confirm_submit()
1 string reference to 'uc_shipping_shipment_delete_confirm'
- uc_shipping_menu in shipping/
uc_shipping/ uc_shipping.module - Implements hook_shipping_menu().
File
- shipping/
uc_shipping/ uc_shipping.admin.inc, line 1040 - Shipping administration menu items.
Code
function uc_shipping_shipment_delete_confirm($form_state, $order, $shipment) {
$form = array();
$form['order_id'] = array(
'#type' => 'value',
'#value' => $order->order_id,
);
$form['sid'] = array(
'#type' => 'value',
'#value' => $shipment->sid,
);
$output = confirm_form($form, t('Are you sure you want to delete this shipment?'), 'admin/store/orders/' . $order->order_id . '/shipments', t('The shipment will be canceled and the packages it contains will be available for reshipment.'), t('Delete'), t('Cancel'));
return $output;
}