function uc_shipping_admin_paths in Ubercart 7.3
Implements hook_admin_paths().
File
- shipping/
uc_shipping/ uc_shipping.module, line 190 - Organizes ordered products into packages and sets them up for shipment. Shipping method modules may add functionality to generate shipping labels and tracking numbers.
Code
function uc_shipping_admin_paths() {
return array(
// Don't show packing slips with the admin theme, overlay, etc.
'admin/store/orders/*/shipments/*/print' => FALSE,
'admin/store/orders/*/shipments/*/packing_slip' => FALSE,
);
}