WC_Tax_Rate_Importer::__construct
Constructor.
Method of the class: WC_Tax_Rate_Importer{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WC_Tax_Rate_Importer = new WC_Tax_Rate_Importer(); $WC_Tax_Rate_Importer->__construct();
WC_Tax_Rate_Importer::__construct() WC Tax Rate Importer:: construct code WC 10.8.1
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.
}