PluginProbe ʕ •ᴥ•ʔ
LatePoint – Calendar Booking Plugin for Appointments and Events / 5.5.2
LatePoint – Calendar Booking Plugin for Appointments and Events v5.5.2
5.6.6 5.6.5 5.6.4 5.6.3 5.6.2 5.6.1 5.6.0 5.5.2 5.5.1 5.5.0 5.4.2 trunk 5.1.0 5.1.1 5.1.2 5.1.3 5.1.4 5.1.5 5.1.6 5.1.7 5.1.8 5.1.9 5.1.91 5.1.92 5.1.93 5.1.94 5.2.0 5.2.1 5.2.10 5.2.11 5.2.2 5.2.3 5.2.4 5.2.5 5.2.6 5.2.7 5.2.8 5.2.9 5.3.0 5.3.1 5.3.2 5.4.0 5.4.1
latepoint / lib / views / customers / import_csv_modal.php
latepoint / lib / views / customers Last commit date
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>