You are here

function uc_fulfillment_help in Ubercart 8.4

Implements hook_help().

File

shipping/uc_fulfillment/uc_fulfillment.module, line 22
Organizes ordered products into packages and sets them up for shipment.

Code

function uc_fulfillment_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'uc_fulfillment.new_package':
      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>';
  }
}