function uc_shipping_help in Ubercart 7.3
Implements hook_help().
File
- shipping/
uc_shipping/ uc_shipping.module, line 13 - 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_help($path, $arg) {
switch ($path) {
case 'admin/store/orders/%/packages/new':
return '<p>' . t('Organize products into packages. Package numbers in multiple shipping types are of the first shipping type they appear in. All packages are given a unique ID when they are saved. Choose the default package "Sep." to automatically create a package for each of the selected quantity of products in that row.') . '</p>';
}
}