You are here

function payment_method_form_add_title in Payment 7

Implements menu title callback.

1 string reference to 'payment_method_form_add_title'
payment_menu in ./payment.module
Implements hook_menu().

File

./payment.ui.inc, line 321
The Payment user interface.

Code

function payment_method_form_add_title(PaymentMethodController $controller) {
  return t('Add @controller_title payment method', array(
    '@controller_title' => $controller->title,
  ));
}