You are here

function uc_2checkout_help in Ubercart 7.3

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

Implements hook_help().

File

payment/uc_2checkout/uc_2checkout.module, line 11
Integrates 2Checkout.com's redirected payment service.

Code

function uc_2checkout_help($path, $arg) {
  switch ($path) {
    case 'admin/store/settings/payment/method/%':
      if ($arg[5] == '2checkout') {
        return '<p>' . t('To accept PayPal payments in 2Checkout, please ensure that demo mode is disabled and your store currency is one of USD, AUD, CAD, EUR or GBP.') . '</p>';
      }
  }
}