function uc_credit_terminal_title in Ubercart 7.3
Same name and namespace in other branches
- 6.2 payment/uc_credit/uc_credit.module \uc_credit_terminal_title()
Title callback for admin/store/orders/%uc_order/credit.
1 string reference to 'uc_credit_terminal_title'
- uc_credit_menu in payment/
uc_credit/ uc_credit.module - Implements hook_menu().
File
- payment/
uc_credit/ uc_credit.module, line 1157 - Defines the credit card payment method and hooks in payment gateways.
Code
function uc_credit_terminal_title($order) {
return t('Credit card terminal: Order @order_id', array(
'@order_id' => $order->order_id,
));
}