You are here

function commerce_cop_token_info_alter in Commerce Custom Offline Payments 7

Implements hook_token_info_alter().

File

./commerce_cop.module, line 458
Custom offline payment methods for Drupal Commerce.

Code

function commerce_cop_token_info_alter(&$info) {
  $info['tokens']['commerce-order']['payment-method-information'] = array(
    'name' => t('Payment method information'),
    'description' => t('Data or instructions to make payment.'),
  );
}