WC_Product_CSV_Importer_Controller::get_valid_csv_filetypes() protected WC 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 Product CSV Importer Controller::get valid csv filetypes WC 5.0.0
protected static function get_valid_csv_filetypes() {
return apply_filters(
'woocommerce_csv_product_import_valid_filetypes',
array(
'csv' => 'text/csv',
'txt' => 'text/plain',
)
);
}