import_steps
9 months ago
_table_body.php
9 months ago
edit_form.php
1 year ago
import_csv_modal.php
9 months ago
import_load_step.php
3 months ago
index.php
4 months ago
inline_edit_form.php
1 year ago
mini_profile.php
1 year ago
new_form.php
1 year ago
query_for_booking_form.php
1 year ago
quick_edit.php
4 months ago
view_customer_log.php
1 year ago
import_csv_modal.php
30 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @var $next_step string |
| 4 | * @var $current_step string |
| 5 | */ |
| 6 | ?> |
| 7 | <?php |
| 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | exit; // Exit if accessed directly |
| 10 | } |
| 11 | ?> |
| 12 | <form class="latepoint-lightbox-wrapper-form import-customers-form" data-route-name="<?php echo esc_attr(OsRouterHelper::build_route_name('customers', 'import_load_step')); ?>"> |
| 13 | <?php wp_nonce_field('import_customers_csv'); ?> |
| 14 | <div class="latepoint-lightbox-heading"> |
| 15 | <h2><?php esc_html_e('Import Customers', 'latepoint'); ?></h2> |
| 16 | </div> |
| 17 | |
| 18 | <?php echo OsFormHelper::hidden_field( 'step', 'upload_csv' ); ?> |
| 19 | |
| 20 | <div class="latepoint-lightbox-content"> |
| 21 | <?php include 'import_steps/step_upload_csv.php'?> |
| 22 | </div> |
| 23 | |
| 24 | <div class="latepoint-lightbox-footer right-aligned"> |
| 25 | <button type="submit" class="latepoint-btn latepoint-csv-next-btn"> |
| 26 | <?php esc_html_e('Continue', 'latepoint'); ?> |
| 27 | </button> |
| 28 | </div> |
| 29 | |
| 30 | </form> |