WC_Product_CSV_Importer::parse_stock_quantity_field
Parse the stock qty field.
Method of the class: WC_Product_CSV_Importer{}
No Hooks.
Returns
float|String.
Usage
$WC_Product_CSV_Importer = new WC_Product_CSV_Importer(); $WC_Product_CSV_Importer->parse_stock_quantity_field( $value );
- $value(string) (required)
- Field value.
WC_Product_CSV_Importer::parse_stock_quantity_field() WC Product CSV Importer::parse stock quantity field code WC 10.6.2
public function parse_stock_quantity_field( $value ) {
if ( '' === $value ) {
return $value;
}
// Remove the ' prepended to fields that start with - if needed.
$value = $this->unescape_data( $value );
return wc_stock_amount( $value );
}