You are here

function uc_credit_help in Ubercart 7.3

Same name and namespace in other branches
  1. 8.4 payment/uc_credit/uc_credit.module \uc_credit_help()

Implements hook_help().

File

payment/uc_credit/uc_credit.module, line 61
Defines the credit card payment method and hooks in payment gateways.

Code

function uc_credit_help($path, $arg) {
  switch ($path) {
    case 'admin/store/orders/%/credit':
      return '<p>' . t('Use this terminal to process credit card payments through your default gateway.') . '</p>';
  }
}