html-csv-import-done.php
5 years ago
html-csv-import-footer.php
8 years ago
html-csv-import-header.php
8 years ago
html-csv-import-mapping.php
8 years ago
html-csv-import-progress.php
8 years ago
html-csv-import-steps.php
8 years ago
html-product-csv-import-form.php
5 years ago
html-csv-import-progress.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Admin View: Importer - CSV import progress |
| 4 | * |
| 5 | * @package WooCommerce\Admin\Importers |
| 6 | */ |
| 7 | |
| 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | exit; |
| 10 | } |
| 11 | ?> |
| 12 | <div class="wc-progress-form-content woocommerce-importer woocommerce-importer__importing"> |
| 13 | <header> |
| 14 | <span class="spinner is-active"></span> |
| 15 | <h2><?php esc_html_e( 'Importing', 'woocommerce' ); ?></h2> |
| 16 | <p><?php esc_html_e( 'Your products are now being imported...', 'woocommerce' ); ?></p> |
| 17 | </header> |
| 18 | <section> |
| 19 | <progress class="woocommerce-importer-progress" max="100" value="0"></progress> |
| 20 | </section> |
| 21 | </div> |
| 22 |