WC_Product_CSV_Importer_Controller::upload_form_handler()
Handle the upload form and store options.
Description Description
Source Source
File: includes/admin/importers/class-wc-product-csv-importer-controller.php
public function upload_form_handler() { check_admin_referer( 'woocommerce-csv-importer' ); $file = $this->handle_upload(); if ( is_wp_error( $file ) ) { $this->add_error( $file->get_error_message() ); return; } else { $this->file = $file; } wp_redirect( esc_url_raw( $this->get_next_step_link() ) ); exit; }