WC_Tax_Rate_Importer::__construct()publicWC 1.0

Constructor.

Method of the class: WC_Tax_Rate_Importer{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Tax_Rate_Importer = new WC_Tax_Rate_Importer();
$WC_Tax_Rate_Importer->__construct();

WC_Tax_Rate_Importer::__construct() code WC 8.7.0

public function __construct() {
	$this->import_page = 'woocommerce_tax_rate_csv';
	$this->delimiter   = empty( $_POST['delimiter'] ) ? ',' : (string) wc_clean( wp_unslash( $_POST['delimiter'] ) ); // WPCS: CSRF ok.
}