You are here

function pay_user_settings_page in Pay 7

Same name and namespace in other branches
  1. 6 pay.module \pay_user_settings_page()

Form builder; Present the form to edit a user's payment settings.

1 string reference to 'pay_user_settings_page'
pay_menu_menu in includes/pay.menu.inc
Implementation of hook_menu().

File

./pay.module, line 144
Pay module allows for accepting payments using pluggable payment backends.

Code

function pay_user_settings_page($account, $category = 'default') {
  drupal_set_title($account->name);
  return drupal_get_form('pay_user_settings_form', $account, $category);
}