WC_Product_CSV_Importer_Controller::get_valid_csv_filetypes()protected staticWC 1.0

Get all the valid filetypes for a CSV file.

Метод класса: WC_Product_CSV_Importer_Controller{}

Возвращает

Массив.

Использование

$result = WC_Product_CSV_Importer_Controller::get_valid_csv_filetypes();

Код WC_Product_CSV_Importer_Controller::get_valid_csv_filetypes() 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',
		)
	);
}