function pay::form_values in Pay 6
Same name and namespace in other branches
- 7 includes/handlers/pay.inc \pay::form_values()
3 calls to pay::form_values()
- pay::settings_form_submit in includes/handlers/ pay.inc 
- pay_form::form_submit in includes/handlers/ pay_form.inc 
- pay_form::form_validate in includes/handlers/ pay_form.inc 
File
- includes/handlers/ pay.inc, line 230 
- The base class for the Payment API.
Class
- pay
- @file The base class for the Payment API.
Code
function form_values($form_state) {
  // Create a handy array of form_values for subforms.
  $values = $form_state['values'][$this
    ->handler()];
  return $this->form_values = array_merge($form_state['values'], $values);
}