You are here

function pay_method_load in Pay 7

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

API Function: Load a payment method object.

11 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_method_overview in includes/pay.admin.inc
pay_currency_list in ./pay.module
Helper function to list all possible currencies.
pay_form::form_submit in includes/handlers/pay_form.inc

... See full list

File

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

Code

function pay_method_load($values = NULL) {
  return pay_load_object('pay_method', $values);
}