You are here

function uc_payment_method_title in Ubercart 7.3

Title callback for payment method settings.

1 string reference to 'uc_payment_method_title'
uc_payment_menu in payment/uc_payment/uc_payment.module
Implements hook_menu().

File

payment/uc_payment/uc_payment.module, line 65

Code

function uc_payment_method_title($method_id) {
  return t('!method settings', array(
    '!method' => _uc_payment_method_data($method_id, 'name'),
  ));
}