You are here

function pay_form_alter in Pay 7

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

Implements hook_form_alter(). Pass the form to any applicable pay handlers in case they have some input.

File

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

Code

function pay_form_alter(&$form, &$form_state, $form_id) {
  pay_form_callback('alter', $form, $form_state);
}