You are here

function uc_fulfillment_token_info in Ubercart 8.4

Implements hook_token_info().

File

shipping/uc_fulfillment/uc_fulfillment.tokens.inc, line 14
Token hooks for the uc_fulfillment module.

Code

function uc_fulfillment_token_info() {
  $tokens = [];
  $tokens['tracking-number'] = [
    'name' => t('Shipment tracking number(s)'),
    'description' => t('Tracking number(s) (if applicable) for product shipments.'),
  ];
  return [
    'tokens' => [
      'uc_order' => $tokens,
    ],
  ];
}