WC_Product_CSV_Importer::parse_cogs_field
Parse the Cost of Goods Sold field.
Method of the class: WC_Product_CSV_Importer{}
No Hooks.
Returns
float|null.
Usage
$WC_Product_CSV_Importer = new WC_Product_CSV_Importer(); $WC_Product_CSV_Importer->parse_cogs_field( $value );
- $value(string) (required)
- Field value.
WC_Product_CSV_Importer::parse_cogs_field() WC Product CSV Importer::parse cogs field code WC 10.6.2
public function parse_cogs_field( $value ) {
return '' === $value ? null : (float) wc_format_decimal( $value );
}