function pay_form_alter in Pay 6
Same name and namespace in other branches
- 7 pay.module \pay_form_alter()
Implementation of hook_form_alter(). Pass the form to any applicable pay handlers in case they have some input.
File
- ./
pay.module, line 313 - 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);
}