function pay_method_load in Pay 6
Same name and namespace in other branches
- 7 pay.module \pay_method_load()
API Function: Load a payment method object.
10 calls to pay_method_load()
- pay_activity::pay_method in includes/
handlers/ pay_activity.inc - Return the payment method related to this activity.
- pay_admin_method_form in includes/
pay.admin.inc - Admin form to create or update payment methods.
- pay_admin_overview in includes/
pay.admin.inc - Payment settings overview.
- pay_currency_list in ./
pay.module - Helper function to list all possible currencies.
- pay_form::form_submit in includes/
handlers/ pay_form.inc
File
- ./
pay.module, line 244 - Pay module allows for accepting payments using pluggable payment backends.
Code
function pay_method_load($values = NULL) {
return pay_load('pay_method', $values);
}