WC_Product_CSV_Importer_Controller::upload_form_handler()
Handle the upload form and store options.
Method of the class: WC_Product_CSV_Importer_Controller{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WC_Product_CSV_Importer_Controller = new WC_Product_CSV_Importer_Controller(); $WC_Product_CSV_Importer_Controller->upload_form_handler();
WC_Product_CSV_Importer_Controller::upload_form_handler() WC Product CSV Importer Controller::upload form handler code WC 9.8.2
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; }