WC_Product_CSV_Importer_Controller::get_valid_csv_filetypes
Get all the valid filetypes for a CSV file.
Method of the class: WC_Product_CSV_Importer_Controller{}
Hooks from the method
Returns
Array.
Usage
$result = WC_Product_CSV_Importer_Controller::get_valid_csv_filetypes();
WC_Product_CSV_Importer_Controller::get_valid_csv_filetypes() WC Product CSV Importer Controller::get valid csv filetypes code WC 10.6.2
protected static function get_valid_csv_filetypes() {
return apply_filters(
'woocommerce_csv_product_import_valid_filetypes',
array(
'csv' => 'text/csv',
'txt' => 'text/plain',
)
);
}