You are here

function uc_extra_fields_pane_form_uc_cart_checkout_form_alter in Extra Fields Checkout Pane 6.2

Implementation of hook_form_FORM_ID_alter(). Applies ordering to address fields following the 'uc_address_fields_weight'-settings.

_state @access private

Parameters

array $form:

File

./uc_extra_fields_pane.module, line 1121
Module: uc_extra_fields_pane.module

Code

function uc_extra_fields_pane_form_uc_cart_checkout_form_alter(&$form, $form_state) {

  // Alter 'address-select' field
  module_load_include('inc', 'uc_extra_fields_pane', 'includes/addressfields');
  uc_extra_fields_pane_address_fields_uc_cart_checkout_form_alter($form, $form_state);

  // Apply weights
  module_load_include('inc', 'uc_extra_fields_pane', 'includes/weights');
  uc_extra_fields_pane_weight_uc_cart_checkout_form_alter($form, $form_state);
}