WC_Product_CSV_Importer_Controller::upload_form
Output information about the uploading process.
Method of the class: WC_Product_CSV_Importer_Controller{}
Hooks from the method
Returns
null. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->upload_form();
WC_Product_CSV_Importer_Controller::upload_form() WC Product CSV Importer Controller::upload form code WC 10.5.0
protected function upload_form() {
$bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() );
$size = size_format( $bytes );
$upload_dir = wp_upload_dir();
include __DIR__ . '/views/html-product-csv-import-form.php';
}