function uc_credit_help in Ubercart 8.4
Same name and namespace in other branches
- 7.3 payment/uc_credit/uc_credit.module \uc_credit_help()
Implements hook_help().
File
- payment/
uc_credit/ uc_credit.module, line 65 - Defines the credit card payment method and hooks in payment gateways.
Code
function uc_credit_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'uc_credit.terminal':
return '<p>' . t('Use this terminal to process credit card payments through your default gateway.') . '</p>';
}
}