WC_Product_CSV_Importer::parse_cogs_fieldpublicWC 1.0

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() code WC 9.9.5

public function parse_cogs_field( $value ) {
	return '' === $value ? null : (float) wc_format_decimal( $value );
}