You are here

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

View the order data @access protected

Return value

string

Overrides UCXF_Pane::order_view

File

class/UCXF_AddressPane.class.php, line 146
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_view() {
  $output = parent::order_view();
  $output_original_pane = $this
    ->getOriginalPane('view');
  if ($output) {
    $output = $output_original_pane . '<br />' . $output;
  }
  else {
    $output = $output_original_pane;
  }
  return $output;
}