function pay_user_settings_page in Pay 6
Same name and namespace in other branches
- 7 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 100 - Pay module allows for accepting payments using pluggable payment backends.
Code
function pay_user_settings_page($account, $category = 'default') {
drupal_set_title(check_plain($account->name));
return drupal_get_form('pay_user_settings_form', $account, $category);
}