WC_Product_CSV_Importer::parse_tax_status_field( string $value )
Parse the tax status field.
Description Description
Parameters Parameters
- $value
-
(Required) Field value.
Return Return
(string)
Source Source
File: includes/import/class-wc-product-csv-importer.php
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 ) ? 'taxable' : 'none';
}
return wc_clean( $value );
}