You are here

protected function UCXF_AddressPane::order_edit_process in Extra Fields Checkout Pane 6.2

Process order data @access protected

Return value

array

Overrides UCXF_Pane::order_edit_process

File

class/UCXF_AddressPane.class.php, line 192
Contains the UCXF_AddressPane class.

Class

UCXF_AddressPane
Class that deals with checkout panes and order panes especially for the address fields.

Code

protected function order_edit_process() {
  $changes = parent::order_edit_process();
  $changes_original_pane = $this
    ->getOriginalPane('edit-process');
  $changes = array_merge($changes, $changes_original_pane);
  return $changes;
}