-
Notifications
You must be signed in to change notification settings - Fork 40
/
table-reservation.php
701 lines (570 loc) · 35.4 KB
/
table-reservation.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
<?php
/***********************************
*
* Plugin Name: Table Reservation
* Plugin URI: https://true-emotions.studio/table-reservation-pro
* Description: Pick a place ⚡️ No collisions. Rich settings. Mobile UX.
* Version: 4.0.3
* Author: True Emotions Studio
* Author URI: https://true-emotions.studio
* License: GPLv2 or later
* Text Domain: tremtr
* Domain Path: /languages/
***********************************/
if (!defined('ABSPATH')) {
exit; // disable direct access
}
if (!class_exists('TREMTableReservation')) :
class TREMTableReservation {
var $vc_dir;
//private $is_user_logged_in;
public function __construct() {
define( 'TREMTR_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
define( 'TREMTR_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
// Initialize the plugin
add_action( 'init', array( $this, 'load_textdomain' ) );
// Register the post type.
add_action( 'init', array( $this, 'tremtr_post_type_init' ) );
require_once ( TREMTR_PLUGIN_DIR . '/includes/meta_box.php' );
require_once( TREMTR_PLUGIN_DIR . '/includes/settings.class.php' );
$this->settings = new TREMtrSettings();
require_once( TREMTR_PLUGIN_DIR . '/includes/reservation.class.php' );
$this->reservation = new TREMtrReservation();
// Handle notifications
require_once( TREMTR_PLUGIN_DIR . '/includes/notifications.class.php' );
$this->notifications = new TREMtrNotifications();
$this->vc_dir = TREMTR_PLUGIN_DIR.'/vc/';
add_action( 'admin_init', array($this,'tremtr_add_admin_menu_separator') );
add_action( 'after_setup_theme', array($this,'tremtr_vc_init'));
add_action( 'wp_enqueue_scripts', array($this, 'tremtr_enqueue_scripts'));
add_action( 'admin_enqueue_scripts', array($this, 'tremtr_admin_enqueue_scripts'));
add_action( 'wp_ajax_tremtr_reservation', array( $this, 'tremtr_reservation' ) );
add_action( 'wp_ajax_nopriv_tremtr_reservation', array( $this, 'tremtr_reservation' ) );
add_action( 'wp_ajax_tremtr_paid_reservation', array( $this, 'tremtr_paid_reservation' ) );
add_action( 'wp_ajax_nopriv_tremtr_paid_reservation', array( $this, 'tremtr_paid_reservation' ) );
add_action( 'save_post', array($this, 'tremtr_save_postdata') );
add_shortcode( 'table-reservation', array($this, 'tremtr_shortcode_output') );
//Delete irrelevant reservations with wp-cron
register_activation_hook( __FILE__, 'tremtr_activation_delete_irrelevant_reservations' );
function tremtr_activation_delete_irrelevant_reservations() {
if (! wp_next_scheduled ( 'tremtr_daily_cleaning_event')) {
wp_schedule_event( time(), 'twicedaily', 'tremtr_daily_cleaning_event');
}
}
add_action( 'tremtr_daily_cleaning_event', array($this, 'delete_old_table_reservations'), 10, 0);
register_deactivation_hook( __FILE__, 'tremtr_deactivation_delete_irrelevant_reservations' );
function tremtr_deactivation_delete_irrelevant_reservations() {
wp_clear_scheduled_hook( 'tremtr_daily_cleaning_event' );
}
// ============================
// ADD RESERVATIONS SCHEME PAGE
// ============================
add_action( 'admin_menu', array($this, 'tremtr_add_submenu_page') );
require_once( TREMTR_PLUGIN_DIR . '/includes/scheme-manage.php' );
$this->scheme = new TREMtrSchemeRoute();
//$this->scheme->create_route();
// ============================
// UPDATES (fur future development)
// ============================
require 'plugin-update-checker/plugin-update-checker.php';
$myUpdateChecker = Puc_v4_Factory::buildUpdateChecker(
'https://github.com/vanadiuz/table-reservation',
__FILE__,
'table-reservation'
);
//Optional: If you're using a private repository, specify the access token like this:
// $myUpdateChecker->setAuthentication('');
// ============================
// ENDPOINT FOR WOOCOMMERCE INTEGRATION (for further development)
// ============================
// require_once( TREMTR_PLUGIN_DIR . '/includes/payments.class.php' );
// add_action( 'init', array($this, 'get_payment_settings') );
// $this->payments = new TREMtrPayments();
// $this->payments = new TREMtrPayments( $payments_settings );
}
public function get_payment_settings(){
$query = new WP_Query(array('nopaging' => true, 'post_type' => 'trem-cafes',
'post_status' => array('publish', 'pending', 'draft', 'auto-draft', 'future', 'private', 'inherit', 'trash')));
$payments_settings = array();
if ( $query->have_posts() ) {
$i=0;
while( $query->have_posts() ) {
$query->the_post();
array_push($payments_settings,array(
get_the_ID(),
get_post_meta( get_the_ID(), 'tremtr_fee_id'),
$this->settings->get_setting( 'paid-reservations-select' . get_the_ID()),
$this->settings->get_setting( 'amount_to_pay' . get_the_ID()),
$this->settings->get_setting( 'paypal' . get_the_ID()),
get_post_status(get_the_ID())
));
}
}
wp_reset_query();
$this->payments->update_assoc_products($payments_settings);
}
public function tremtr_common_styles_and_scripts(){
wp_register_script('tremtr-fontawesome', TREMTR_PLUGIN_URL . '/assets/js/fontawesome.js');
wp_register_script('tremtr-fabric', TREMTR_PLUGIN_URL . '/assets/js/fabric.min.backend.js');
}
public function tremtr_add_submenu_page() {
$query = new WP_Query(array('nopaging' => true, 'post_type' => 'trem-cafes'));
if ( $query->have_posts() ) {
$i=0;
while( $query->have_posts() ) {
$query->the_post();
$this->cafes_id = get_the_ID();
add_submenu_page(
'edit.php?post_type=trem-reservation',
esc_html(get_the_title()),
esc_html(get_the_title()),
'manage_options',
'reservations_scheme_' . get_the_ID(),
array($this, 'reservations_scheme_enqueue_scripts')
);
}
}
wp_reset_query();
}
public function reservations_scheme_enqueue_scripts() {
wp_enqueue_style('tremtr-icons', TREMTR_PLUGIN_URL . '/assets/css/trem-reservation-icons/css/trem-reservation.css');
wp_enqueue_style('tremtr-app', TREMTR_PLUGIN_URL . '/assets/css/tremtr-scheme.css');
$cafes_id = substr($_GET['page'], strrpos($_GET['page'], '_') + 1);
wp_enqueue_script( 'tremtr-fabric' );
wp_enqueue_script('tremtr-manifest-scheme', TREMTR_PLUGIN_URL . '/assets/js/manifest.0bfe977af4ec6caadb3c.js', array(), '1.0.0', 'screen, all');
wp_enqueue_script('tremtr-vendor-scheme', TREMTR_PLUGIN_URL . '/assets/js/vendor.5756214862ee99ad046b.js', array(), '1.0.0', 'screen, all');
wp_enqueue_script('tremtr-app-scheme', TREMTR_PLUGIN_URL . '/assets/js/app.12ce87c98b58bdcd80f2.js', array(), '1.0.0', 'screen, all');
// wp_register_script( 'tremtr-app-scheme', 'http://localhost:8080/app.js' , '', '', true );
wp_localize_script(
'tremtr-app-scheme',
'tremtr_data',
array(
'date_format' => $this->settings->get_setting( 'date-format' ),
'time_format' => $this->settings->get_setting( 'time-format' ),
'schedule_open' => $this->settings->get_setting( 'schedule-open' . $cafes_id ) == '' ? '' : tremtr_time_convert($this->settings->get_setting( 'schedule-open' . $cafes_id )),
'schedule_closed' => tremtr_time_convert($this->settings->get_setting( 'schedule-closed' . $cafes_id )),
'early_reservations' => is_admin() && current_user_can( 'manage_reservations' . $cafes_id) ? '' : $this->settings->get_setting( 'early-reservations' . $cafes_id),
'late_reservations' => is_admin() && current_user_can( 'manage_reservations' . $cafes_id) ? '' : $this->settings->get_setting( 'late-reservations' . $cafes_id),
'time_interval' => $this->settings->get_setting( 'time-interval' . $cafes_id),
'slider_time_interval' => $this->settings->get_setting( 'slider-time-interval' . $cafes_id),
'reservation_duration' => $this->settings->get_setting( 'reservation-duration' . $cafes_id),
'reservation_duration_select' => $this->settings->get_setting( 'reservation-duration-select' . $cafes_id),
'reservation_duration_min' => $this->settings->get_setting( 'reservation-duration-min' . $cafes_id ),
'reservation_duration_max' => $this->settings->get_setting( 'reservation-duration-max' . $cafes_id ),
'week_start' => $this->settings->get_setting( 'week-start' ) == '' ? '1' : $this->settings->get_setting( 'week-start' ),
'allow_past' => is_admin() && current_user_can( 'manage_reservations' ),
'url' => admin_url( 'admin-ajax.php' ),
'endpoint_cafe' => site_url() . '/wp-json/wp/v2/trem-cafes/' . $cafes_id,
'endpoint_reservation' => site_url() . '/wp-json/tremtr/v1/reservations',
'nonce' => wp_create_nonce('wp_rest'),
'mainColor' => $this->settings->get_setting( 'main-color' ),
'fillActive' => tremtr_hex2rgb($this->settings->get_setting( 'available-color' )),
'fillBooked' => tremtr_hex2rgb($this->settings->get_setting( 'reserved-color' )),
'translation' => array(
'header' => __('Plan your day with us', 'tremtr'),
'modalFreeHeader' => __('New reservation', 'tremtr'),
'modalReservedHeader' => __('Reservation', 'tremtr'),
'tableBooked' => __('⚠️ Reserved for this time interval', 'tremtr'),
'calendar' => $this->settings->get_setting('i8n') == '' ? 'en' : $this->settings->get_setting('i8n'),
'stayTime' => __('Time of stay', 'tremtr'),
'minutes' => __('minutes', 'tremtr'),
'bookTableButton' => __('Book a table', 'tremtr'),
'bookTableButtonWarning' => __('Firslty fill all fields and select a table!', 'tremtr'),
'canvasClickWarning' => __('☝️ Please, select date and time!', 'tremtr'),
'table' => __('Table', 'tremtr'),
'tables' => __('Tables', 'tremtr'),
'time' => __('Time', 'tremtr'),
'for' => __('for', 'tremtr'),
'people' => __('People', 'tremtr'),
'on' => __('on', 'tremtr'),
'from' => __('at', 'tremtr'),
'to' => __('till', 'tremtr'),
'in' => __('in', 'tremtr'),
'cafe' => get_bloginfo( 'name' ),
'changeButton' => __('Change', 'tremtr'),
'confirmButton' => __('Create', 'tremtr'),
'deleteButton' => __('Delete', 'tremtr'),
'confirmButtonWarning' => __('Please, fill all fields correctly!', 'tremtr'),
'name' => __('Name', 'tremtr'),
'email' => __('Email', 'tremtr'),
'phone' => __('Phone', 'tremtr'),
'message' => __('Message', 'tremtr'),
'thanksAtTheEnd' => $this->settings->get_setting( 'success-message' ),
'rejectRequest' => __('😢 Something gone wrong!', 'tremtr'),
'confirmedReservation' => __('👍🏼Table reserved!', 'tremtr'),
'deletedReservation' => __('👌🏻Reservation canceled!', 'tremtr'),
),
)
);
wp_enqueue_script( 'tremtr-app-scheme' );
echo '<div id="reservation" class="trem-reservation"></div>';
}
//Delete irrelevant reservations with wp-cron
public function delete_old_table_reservations() {
$query = new WP_Query(array('nopaging' => true, 'post_type' => 'trem-reservation'));
if ( $query->have_posts() ) {
$i=0;
while( $query->have_posts() ) {
$query->the_post();
if(get_post_meta( get_the_ID(), 'tremtr_reservation_date', true ) < date( 'Y/m/d', current_time( 'timestamp', 0 ) )){
wp_delete_post( get_the_ID(), true);
}
}
}
wp_reset_query();
}
/**
* Load the plugin textdomain for localistion
* @since 0.0.1
*/
public function load_textdomain() {
load_plugin_textdomain( 'tremtr', false, plugin_basename( dirname( __FILE__ ) ) . "/languages/" );
}
// Register tremtr post type
public function tremtr_post_type_init() {
$labels = array(
'name' => esc_html__('Cafe', 'tremtr'),
'singular_name' => esc_html__('Cafe', 'tremtr'),
'add_new' => esc_html__('Add New', 'tremtr'),
'add_new_item' => esc_html__('Add New Cafe', 'tremtr'),
'edit_item' => esc_html__('Edit Cafe', 'tremtr'),
'new_item' => esc_html__('New Cafe', 'tremtr'),
'view_item' => esc_html__('View Cafe', 'tremtr'),
'search_items' => esc_html__('Search Cafe', 'tremtr'),
'not_found' => esc_html__('Not found', 'tremtr'),
'not_found_in_trash' => esc_html__('Not found in Trash', 'tremtr'),
);
$args = array(
'labels' => $labels,
'hierarchical' => false,
'supports' => array('title', 'thumbnail'),
'public' => true,
'show_in_rest' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => false,
'publicly_queryable' => false,
'exclude_from_search' => true,
'menu_position' => 31,
'menu_icon' => 'dashicons-store',
'has_archive' => true,
'query_var' => true,
'can_export' => true,
'rewrite' => array( 'slug' => 'cafe' ),
'capability_type' => 'post',
'register_meta_box_cb' => 'tremtr_meta_boxes'
);
register_post_type('trem-cafes', $args);
$labels = array(
'name' => esc_html__('Reservations', 'tremtr'),
'singular_name' => esc_html__('Reservation', 'tremtr'),
'add_new' => esc_html__('Add New', 'tremtr'),
'add_new_item' => esc_html__('Add Reservation', 'tremtr'),
'edit_item' => esc_html__('Edit Reservation', 'tremtr'),
'new_item' => esc_html__('New Reservation', 'tremtr'),
'view_item' => esc_html__('View Reservation', 'tremtr'),
'search_items' => esc_html__('Search Reservation', 'tremtr'),
'not_found' => esc_html__('Not found', 'tremtr'),
'not_found_in_trash' => esc_html__('Not found in Trash', 'tremtr'),
);
$args = array(
'labels' => $labels,
'hierarchical' => false,
'supports' => array('title'),
'public' => true,
'show_in_rest' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => false,
'publicly_queryable' => false,
'exclude_from_search' => true,
'menu_position' => 30,
'menu_icon' => 'dashicons-clipboard',
'has_archive' => true,
'query_var' => true,
'can_export' => true,
'rewrite' => array( 'slug' => 'reservation' ),
'capability_type' => 'post',
'register_meta_box_cb' => 'tremtr_reservation_meta_boxes'
);
register_post_type('trem-reservation', $args);
}
public function tremtr_add_admin_menu_separator(){
global $menu;
$sep_begin = 0;
foreach($menu as $offset => $section) {
if ( strpos($section[2],'trem-reservation') )
$sep_begin = $offset;
}
if( $sep_begin != 30 ) {
$rev_menu = array_reverse( $menu, true );
if( is_array($rev_menu) && !empty($rev_menu) ) {
foreach ( $rev_menu as $offset => $section ) {
if ( $offset >= $sep_begin ) {
$rev_menu[ $offset + 1 ] = $rev_menu[ $offset ];
}
}
$menu = $rev_menu;
}
} else {
$sep_begin = 29;
}
$menu[ $sep_begin ] = array(
0 => '',
1 => 'read',
2 => 'separator'.$sep_begin,
3 => '',
4 => 'wp-menu-separator'
);
ksort ($menu);
}
function tremtr_vc_init(){
require_once($this->vc_dir."vc_shortcode_tremtr.php");
}
public function tremtr_reservation() {
if( check_ajax_referer( 'wp_rest', 'nonce' ) ){
$this->tremtr_save_reservation();
$this->notifications->new_submission($this->reservation);
wp_send_json_success($this->reservation);
} else {
wp_send_json_error(array('error' => 'empty_data'));
}
}
// public function tremtr_paid_reservation() {
// if( check_ajax_referer( 'wp_rest', 'nonce' ) ){
// $this->tremtr_save_reservation();
// $order_data = [
// "cafe_name" => sanitize_text_field($_POST['tremtr_reservation_cafe']),
// "cafe_id" => "1765", //sanitize_text_field($_POST['tremtr_reservation_cafe_id']),
// "product_id" => "1766", //sanitize_text_field($_POST['tremtr_reservation_product_id']),
// "email" => sanitize_email($_POST['tremtr_reservation_email']),
// "name" => sanitize_text_field($_POST['tremtr_reservation_name']),
// "phone" => sanitize_text_field($_POST['tremtr_reservation_phone']),
// "table" => sanitize_text_field($_POST['tremtr_reservation_table']),
// "message" => sanitize_textarea_field($_POST['tremtr_reservation_message']),
// "reservation_date" => preg_replace("([^0-9/])", "", $_POST['tremtr_reservation_date']),
// "reservation_time_begin" => preg_replace("([^0-9:])", "", $_POST['tremtr_reservation_time_begin']),
// "reservation_time_end" => preg_replace("([^0-9:])", "", $_POST['tremtr_reservation_time_end']),
// "people" => sanitize_text_field($_POST['tremtr_reservation_persons']),
// "reservation_id" => $this->reservation->ID
// ];
// $link = $this->payments->create_new_order($order_data);
// if ($link) {
// // add_action( 'tremtr_check_paid' . $this->reservation->ID, $this->tremtr_check_if_paid($order_data["product_id"]));
// // wp_schedule_single_event( time() + 600, 'tremtr_check_paid' . $this->reservation->ID);
// //add hook to PP payment
// wp_send_json_success($link);
// } else {
// wp_send_json_error(array('error' => 'empty_data'));
// }
// } else {
// wp_send_json_error(array('error' => 'empty_data'));
// }
// }
// public function tremtr_check_if_paid($id) {
// // if order not paid -> delete reservation
// if (TRUE) {
// # code...
// } else {
// // $this->notifications->new_submission($data); //based on reservation ID extract data, put it inside this->reservation and pass to fucntion OR check load_wp_post
// }
// }
public function tremtr_save_reservation() {
$this->reservation->name = sanitize_text_field($_POST['tremtr_reservation_name']);
$this->reservation->post_type = 'trem-reservation';
$this->reservation->post_status = 'publish';
$this->reservation->table = sanitize_text_field($_POST['tremtr_reservation_table']);
$this->reservation->cafe = sanitize_text_field($_POST['tremtr_reservation_cafe']);
$this->reservation->persons = sanitize_text_field($_POST['tremtr_reservation_persons']);
$this->reservation->reservation_date = preg_replace("([^0-9/])", "", $_POST['tremtr_reservation_date']);
$this->reservation->reservation_time_begin = preg_replace("([^0-9:])", "", $_POST['tremtr_reservation_time_begin']);
$this->reservation->reservation_time_end = preg_replace("([^0-9:])", "", $_POST['tremtr_reservation_time_end']);
$this->reservation->email = sanitize_email($_POST['tremtr_reservation_email']);
$this->reservation->phone = sanitize_text_field($_POST['tremtr_reservation_phone']);
$this->reservation->message = sanitize_textarea_field($_POST['tremtr_reservation_message']);
$table_reservs = $this->reservation->get_table_reservations($this->reservation->reservation_date, $this->reservation->table, $this->reservation->cafe);
if( !empty($table_reservs) ){
foreach($table_reservs as $val){
if( $this->reservation->reservation_time_end != '' && $val['time_end'] != '' && $this->reservation->reservation_time_begin != '' && $val['time_begin'] != '' && $val['time_begin'] < $val['time_end']) {
if( $val['time_begin'] >= $this->reservation->reservation_time_begin && $val['time_end'] <= $this->reservation->reservation_time_end ){
wp_send_json_error(array('error' => 'not_free2'));
} elseif( $val['time_begin'] <= $this->reservation->reservation_time_begin && $val['time_end'] > $this->reservation->reservation_time_begin ){
wp_send_json_error(array('error' => 'not_free3'));
} elseif( $val['time_begin'] < $this->reservation->reservation_time_end && $val['time_end'] >= $this->reservation->reservation_time_end ){
wp_send_json_error(array('error' => 'not_free4'));
}
}
}
}
$reservation = array(
'ID' => '',
'post_type' => $this->reservation->post_type,
'post_title' => $this->reservation->name,
'post_status' => $this->reservation->post_status,
);
$this->reservation->ID = wp_insert_post($reservation);
if ($this->reservation->ID) {
$options = array(
'tremtr_reservation_name' => $this->reservation->name,
'tremtr_reservation_date' => $this->reservation->reservation_date,
'tremtr_reservation_time_begin' => $this->reservation->reservation_time_begin,
'tremtr_reservation_time_end' => $this->reservation->reservation_time_end,
'tremtr_reservation_cafe' => $this->reservation->cafe,
'tremtr_reservation_table' => $this->reservation->table,
'tremtr_reservation_persons' => $this->reservation->persons,
'tremtr_reservation_email' => $this->reservation->email,
'tremtr_reservation_phone' => $this->reservation->phone,
'tremtr_reservation_message' => $this->reservation->message,
'tremtr_reservation_nonce' => sanitize_text_field($_POST['nonce']),
);
foreach ($options as $key => $value) {
update_post_meta($this->reservation->ID, $key, $value);
}
}
}
public function tremtr_save_postdata($post_id) {
if(get_post_type( $post_id ) == 'trem-cafes'){
// Checks save status
$is_autosave = wp_is_post_autosave($post_id);
$is_revision = wp_is_post_revision($post_id);
$is_valid_nonce = (isset($_POST['tremtr_nonce']) && wp_verify_nonce($_POST['tremtr_nonce'], basename(__FILE__))) ? 'true' : 'false';
// Exits script depending on save status
if ($is_autosave || $is_revision || !$is_valid_nonce) {
return;
}
}
}
//Shortcode output
public function tremtr_shortcode_output($atts) {
$content = '';
$a = shortcode_atts( array(
'cafe_id' => 0
), $atts );
wp_localize_script(
'tremtr-app',
'tremtr_cafe_id',
array(
'id' => $a['cafe_id']
)
);
$cafe_id = $a['cafe_id'];
wp_localize_script(
'tremtr-app',
'tremtr_data',
array(
'date_format' => $this->settings->get_setting( 'date-format' ),
'time_format' => $this->settings->get_setting( 'time-format' ),
'schedule_open' => $this->settings->get_setting( 'schedule-open' . $cafe_id ) == '' ? '' : tremtr_time_convert($this->settings->get_setting( 'schedule-open' . $cafe_id )),
'schedule_closed' => tremtr_time_convert($this->settings->get_setting( 'schedule-closed' . $cafe_id )),
'early_reservations' => is_admin() && current_user_can( 'manage_reservations' ) ? '' : $this->settings->get_setting( 'early-reservations' . $cafe_id ),
'late_reservations' => is_admin() && current_user_can( 'manage_reservations' ) ? '' : $this->settings->get_setting( 'late-reservations' . $cafe_id ),
'time_interval' => $this->settings->get_setting( 'time-interval' . $cafe_id ),
'slider_time_interval' => $this->settings->get_setting( 'slider-time-interval' . $cafe_id ),
'reservation_duration' => $this->settings->get_setting( 'reservation-duration' . $cafe_id ),
'reservation_duration_select' => $this->settings->get_setting( 'reservation-duration-select' . $cafe_id ),
'reservation_duration_min' => $this->settings->get_setting( 'reservation-duration-min' . $cafe_id ),
'reservation_duration_max' => $this->settings->get_setting( 'reservation-duration-max' . $cafe_id ),
'week_start' => $this->settings->get_setting( 'week-start' ) == '' ? '1' : $this->settings->get_setting( 'week-start' ),
'url' => admin_url( 'admin-ajax.php' ),
'endpoint_cafe' => site_url() . '/wp-json/wp/v2/trem-cafes/' . $cafe_id,
'endpoint_reservation' => site_url() . '/wp-json/wp/v2/trem-reservation/?per_page=100',
'nonce' => wp_create_nonce('wp_rest'),
'mainColor' => $this->settings->get_setting( 'main-color' ),
'fillActive' => tremtr_hex2rgb($this->settings->get_setting( 'available-color' )),
'fillBooked' => tremtr_hex2rgb($this->settings->get_setting( 'reserved-color' )),
'translation' => array(
'header' => __('Plan your day with us', 'tremtr'),
'calendar' => $this->settings->get_setting('i8n') == '' ? 'en' : $this->settings->get_setting('i8n'),
'stayTime' => __('Time of stay', 'tremtr'),
'minutes' => __('min.', 'tremtr'),
'hours' => __('h.', 'tremtr'),
'bookTableButton' => __('Book a table', 'tremtr'),
'bookTableButtonWarning' => __('Please, select a table!', 'tremtr'),
'canvasClickWarning' => __('Please, select date and time!', 'tremtr'),
'table' => __('Table', 'tremtr'),
'for' => __('for', 'tremtr'),
'people' => __('People', 'tremtr'),
'on' => __('on', 'tremtr'),
'from' => __('at', 'tremtr'),
'to' => __('till', 'tremtr'),
'in' => __('in', 'tremtr'),
'cafe' => get_bloginfo( 'name' ),
'changeButton' => __('Change', 'tremtr'),
'confirmButton' => __('Confirm', 'tremtr'),
'confirmButtonWarning' => __('Please, fill all fields correctly!', 'tremtr'),
'name' => __('Name', 'tremtr'),
'email' => __('Email', 'tremtr'),
'phone' => __('Phone', 'tremtr'),
'message' => __('Message', 'tremtr'),
'privacy' => $this->settings->get_setting( 'privacy-message' ),
'thanksAtTheEnd' => $this->settings->get_setting( 'success-message' ),
'rejected' => __('Someone has already reserved the table. Please, select another one.', 'tremtr'),
),
)
);
if (true) {
wp_enqueue_script( 'tremtr-fontawesome' );
wp_enqueue_script( 'tremtr-fabric' );
wp_enqueue_script( 'tremtr-manifest' );
wp_enqueue_script( 'tremtr-vendor' );
wp_enqueue_script( 'tremtr-app' );
$content = '<div id="reservation" class="reservation"></div>';
}
return $content;
}
public function tremtr_get_cafes_id() {
return $this->cafes_id;
}
//Load Admin Scripts
public function tremtr_admin_enqueue_scripts() {
wp_enqueue_style('tremtr_admin_styles', TREMTR_PLUGIN_URL . '/assets/css/trem.css', array(), '1.0.0', 'screen, all');
wp_enqueue_style('tremtr_admin_styles_context_menu', TREMTR_PLUGIN_URL . '/assets/css/jquery.contextMenu.min.css');
wp_enqueue_media();
wp_enqueue_style( 'wp-color-picker' );
wp_enqueue_style('tremtr-admin-flatpickr', TREMTR_PLUGIN_URL . '/assets/css/flatpickr.min.css');
wp_enqueue_script('tremtr-admin-flatpickr', TREMTR_PLUGIN_URL . '/assets/js/flatpickr.js');
wp_register_script('tremtr-fontawesome', TREMTR_PLUGIN_URL . '/assets/js/fontawesome.js');
wp_register_script('tremtr-fabric', TREMTR_PLUGIN_URL . '/assets/js/fabricBackEnd.min.js');
wp_register_script('tremtr-fabricBackEnd', TREMTR_PLUGIN_URL . '/assets/js/fabricBackEnd.min.js');
wp_register_script('tremtr-admin_context_menu', TREMTR_PLUGIN_URL . '/assets/js/jquery.contextMenu.min.js');
wp_register_script('tremtr-admin_main', TREMTR_PLUGIN_URL . '/assets/js/main.js');
wp_register_script( 'tremtr-front-data', TREMTR_PLUGIN_URL . '/assets/js/front-data.js', array( 'jquery' ) );
wp_localize_script(
'tremtr-front-data',
'tremtr_data',
array(
'date_format' => $this->settings->get_setting( 'date-format' ),
'time_format' => $this->settings->get_setting( 'time-format' ),
'schedule_open' => $this->settings->get_setting( 'schedule-open' ),
'schedule_closed' => $this->settings->get_setting( 'schedule-closed' ),
'early_reservations' => is_admin() && current_user_can( 'manage_reservations' ) ? '' : $this->settings->get_setting( 'early-reservations' ),
'late_reservations' => is_admin() && current_user_can( 'manage_reservations' ) ? '' : $this->settings->get_setting( 'late-reservations' ),
'date_onload' => $this->settings->get_setting( 'date-onload' ),
'time_interval' => $this->settings->get_setting( 'time-interval' ),
'allow_past' => is_admin() && current_user_can( 'manage_reservations' ),
'nonce' => wp_create_nonce('wp_rest'),
)
);
wp_enqueue_script( 'tremtr-front-data' );
}
public function tremtr_enqueue_scripts() {
wp_enqueue_style('tremtr-icons', TREMTR_PLUGIN_URL . '/assets/css/trem-reservation-icons/css/trem-reservation.css');
wp_enqueue_style('tremtr-app', TREMTR_PLUGIN_URL . '/assets/css/tremtr-client.css');
$i8n = $this->settings->get_setting( 'i8n' );
if ( !empty( $i8n ) ) {
wp_register_script( 'pickadate-i8n', TREMTR_PLUGIN_URL . '/includes/simple-admin-pages/lib/pickadate/translations/' . esc_attr( $i8n ) . '.js', array( 'jquery' ), '', true );
// Arabic and Hebrew are right-to-left languages
if ( $i8n == 'ar' || $i8n == 'he_IL' ) {
wp_register_style( 'pickadate-rtl', TREMTR_PLUGIN_URL . '/includes/simple-admin-pages/lib/pickadate/themes/rtl.css' );
}
}
wp_register_script('tremtr-fabric', TREMTR_PLUGIN_URL . '/assets/js/fabric.min.js');
wp_register_script('tremtr-manifest', TREMTR_PLUGIN_URL . '/assets/js/manifest.685b187410e0ef33a004.js', array(), '1.0.0', 'screen, all');
wp_register_script('tremtr-vendor', TREMTR_PLUGIN_URL . '/assets/js/vendor.5bf177ce23cd6fa33cac.js', array(), '1.0.0', 'screen, all');
wp_register_script('tremtr-app', TREMTR_PLUGIN_URL . '/assets/js/app.35f8659c37878dab79c8.js', array(), '1.0.0', 'screen, all');
// wp_register_script( 'tremtr-app', 'http://localhost:8080/app.js' , '', '', true );
}
}
endif;
global $tremtr_controller;
$tremtr_controller = new TREMTableReservation();