WC_Product_CSV_Importer_Controller::dispatch()
Dispatch current step and show correct view.
Description Description
Source Source
File: includes/admin/importers/class-wc-product-csv-importer-controller.php
265 266 267 268 269 270 271 272 273 274 275 | public function dispatch() { // phpcs:ignore WordPress.Security.NonceVerification.Missing if ( ! empty ( $_POST [ 'save_step' ] ) && ! empty ( $this ->steps[ $this ->step ][ 'handler' ] ) ) { call_user_func( $this ->steps[ $this ->step ][ 'handler' ], $this ); } $this ->output_header(); $this ->output_steps(); $this ->output_errors(); call_user_func( $this ->steps[ $this ->step ][ 'view' ], $this ); $this ->output_footer(); } |