WC_Product_CSV_Importer_Controller::get_valid_csv_filetypes()protected staticWC 1.0

Get all the valid filetypes for a CSV file.

Method of the class: WC_Product_CSV_Importer_Controller{}

Return

Array.

Usage

$result = WC_Product_CSV_Importer_Controller::get_valid_csv_filetypes();

WC_Product_CSV_Importer_Controller::get_valid_csv_filetypes() code WC 8.7.0

protected static function get_valid_csv_filetypes() {
	return apply_filters(
		'woocommerce_csv_product_import_valid_filetypes',
		array(
			'csv' => 'text/csv',
			'txt' => 'text/plain',
		)
	);
}