You are here

public function UCXF_AddressField::__construct in Extra Fields Checkout Pane 7

Same name and namespace in other branches
  1. 6.2 class/UCXF_AddressField.class.php \UCXF_AddressField::__construct()

UCXF_AddressField object constructor @access public

Return value

void

Overrides UCXF_Field::__construct

File

class/UCXF_AddressField.class.php, line 23
Contains the UCXF_AddressField class.

Class

UCXF_AddressField
Class for a Extra Fields Pane Address field

Code

public function __construct() {
  parent::__construct();
  $this->returnpath = 'admin/store/settings/countries/fields';
  $this->pane_types = array(
    'extra_delivery',
    'extra_billing',
  );
}