WC_Product_Importer::get_mapped_keys()publicWC 1.0

Get file mapped headers.

Method of the class: WC_Product_Importer{}

No Hooks.

Return

Array.

Usage

$WC_Product_Importer = new WC_Product_Importer();
$WC_Product_Importer->get_mapped_keys();

WC_Product_Importer::get_mapped_keys() code WC 7.7.0

public function get_mapped_keys() {
	return ! empty( $this->mapped_keys ) ? $this->mapped_keys : $this->raw_keys;
}