You are here

function payment_payment_form_alter in Payment 7

Implements hook_payment_form_alter().

File

tests/payment_test/payment_test.module, line 35
Hook implementations and shared functions.

Code

function payment_payment_form_alter(array &$elements, array &$form_state, array &$submit) {

  // @see PaymentActionHookAndCallbackWebTestCase.
  $elements['payment_test'] = TRUE;
  $submit[] = 'payment_test';
}