WC_Product_CSV_Importer::parse_tax_status_field
Parse the tax status field.
Method of the class: WC_Product_CSV_Importer{}
No Hooks.
Returns
String.
Usage
$WC_Product_CSV_Importer = new WC_Product_CSV_Importer(); $WC_Product_CSV_Importer->parse_tax_status_field( $value );
- $value(string) (required)
- Field value.
WC_Product_CSV_Importer::parse_tax_status_field() WC Product CSV Importer::parse tax status field code WC 10.8.1
public function parse_tax_status_field( $value ) {
if ( '' === $value ) {
return $value;
}
// Remove the ' prepended to fields that start with - if needed.
$value = $this->unescape_data( $value );
if ( 'true' === strtolower( $value ) || 'false' === strtolower( $value ) ) {
$value = wc_string_to_bool( $value ) ? ProductTaxStatus::TAXABLE : ProductTaxStatus::NONE;
}
return wc_clean( $value );
}