-
Notifications
You must be signed in to change notification settings - Fork 0
/
em-actions.php
966 lines (947 loc) · 43.9 KB
/
em-actions.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
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
<?php
/**
* Performs actions on init. This works for both ajax and normal requests, the return results depends if an em_ajax flag is passed via POST or GET.
*/
function em_init_actions_start() {
global $wpdb,$EM_Notices,$EM_Event;
if( defined('DOING_AJAX') && DOING_AJAX ) $_REQUEST['em_ajax'] = true;
//NOTE - No EM objects are globalized at this point, as we're hitting early init mode.
//TODO Clean this up.... use a uniformed way of calling EM Ajax actions
if( !empty($_REQUEST['em_ajax']) || !empty($_REQUEST['em_ajax_action']) ){
if(isset($_REQUEST['em_ajax_action']) && $_REQUEST['em_ajax_action'] == 'get_location') {
if(isset($_REQUEST['id'])){
$EM_Location = new EM_Location( absint($_REQUEST['id']), 'location_id' );
$location_array = $EM_Location->to_array();
$location_array['location_balloon'] = $EM_Location->output( get_option('dbem_location_baloon_format') );
echo EM_Object::json_encode($location_array);
}
die();
}
if( isset($_REQUEST['em_ajax_action']) && $_REQUEST['em_ajax_action'] == 'delete_ticket' ) {
if( isset($_REQUEST['id']) ){
$EM_Ticket = new EM_Ticket( absint($_REQUEST['id']) );
$result = $EM_Ticket->delete();
if( $result ){
$result = array('result'=>true, 'success'=>true);
}else{
$result = array('result'=>false, 'success'=>false, 'error'=>$EM_Ticket->feedback_message);
}
}else{
$result = array('result'=>false, 'success'=>false, 'error'=>__('No ticket id provided','events-manager'));
}
echo EM_Object::json_encode($result);
die();
}
if(isset($_REQUEST['query']) && $_REQUEST['query'] == 'GlobalMapData') {
$EM_Locations = EM_Locations::get( $_REQUEST );
$json_locations = array();
foreach($EM_Locations as $location_key => $EM_Location) {
$json_locations[$location_key] = $EM_Location->to_array();
$json_locations[$location_key]['location_balloon'] = $EM_Location->output(get_option('dbem_map_text_format'));
}
echo EM_Object::json_encode($json_locations);
die();
}
if(isset($_REQUEST['query']) && $_REQUEST['query'] == 'GlobalEventsMapData') {
$_REQUEST['has_location'] = true; //we're looking for locations in this context, so locations necessary
$_REQUEST['groupby'] = 'location_id'; //grouping will generally produce much faster processing
$EM_Events = EM_Events::get( $_REQUEST );
$json_locations = array();
$locations = array();
foreach($EM_Events as $EM_Event) {
$EM_Location = $EM_Event->get_location();
$location_array = $EM_Event->get_location()->to_array();
$location_array['location_balloon'] = $EM_Location->output(get_option('dbem_map_text_format'));
$json_locations[] = $location_array;
}
echo EM_Object::json_encode($json_locations);
die();
}
if(isset($_REQUEST['ajaxCalendar']) && $_REQUEST['ajaxCalendar']) {
$_REQUEST['has_search'] = false; //prevent search from loading up again
echo EM_Calendar::output($_REQUEST, false);
die();
}
}
//Event Actions
if( !empty($_REQUEST['action']) && substr($_REQUEST['action'],0,5) == 'event' ){
//Load the event object, with saved event if requested
if( !empty($_REQUEST['event_id']) ){
$EM_Event = new EM_Event( absint($_REQUEST['event_id']) );
}else{
$EM_Event = new EM_Event();
}
//Save Event, only via BP or via [event_form]
if( $_REQUEST['action'] == 'event_save' && $EM_Event->can_manage('edit_events','edit_others_events') ){
//Check Nonces
if( !wp_verify_nonce($_REQUEST['_wpnonce'], 'wpnonce_event_save') ) exit('Trying to perform an illegal action.');
//Set server timezone to UTC in case other plugins are doing something naughty
$server_timezone = date_default_timezone_get();
date_default_timezone_set('UTC');
//Grab and validate submitted data
if ( $EM_Event->get_post() && $EM_Event->save() ) { //EM_Event gets the event if submitted via POST and validates it (safer than to depend on JS)
$events_result = true;
//Success notice
if( is_user_logged_in() ){
if( empty($_REQUEST['event_id']) ){
$EM_Notices->add_confirm( $EM_Event->output(get_option('dbem_events_form_result_success')), true);
}else{
$EM_Notices->add_confirm( $EM_Event->output(get_option('dbem_events_form_result_success_updated')), true);
}
}else{
$EM_Notices->add_confirm( $EM_Event->output(get_option('dbem_events_anonymous_result_success')), true);
}
$redirect = !empty($_REQUEST['redirect_to']) ? $_REQUEST['redirect_to'] : em_wp_get_referer();
$redirect = em_add_get_params($redirect, array('success'=>1), false, false);
wp_safe_redirect( $redirect );
exit();
}else{
$EM_Notices->add_error( $EM_Event->get_errors() );
$events_result = false;
}
//Set server timezone back, even though it should be UTC anyway
date_default_timezone_set($server_timezone);
}
if ( $_REQUEST['action'] == 'event_duplicate' && wp_verify_nonce($_REQUEST['_wpnonce'],'event_duplicate_'.$EM_Event->event_id) ) {
$event = $EM_Event->duplicate();
if( $event === false ){
$EM_Notices->add_error($EM_Event->errors, true);
wp_safe_redirect( em_wp_get_referer() );
}else{
$EM_Notices->add_confirm($event->feedback_message, true);
wp_safe_redirect( $event->get_edit_url() );
}
exit();
}
if ( $_REQUEST['action'] == 'event_delete' && wp_verify_nonce($_REQUEST['_wpnonce'],'event_delete_'.$EM_Event->event_id) ) {
//DELETE action
$selectedEvents = !empty($_REQUEST['events']) ? $_REQUEST['events']:array();
if( EM_Object::array_is_numeric($selectedEvents) ){
$events_result = EM_Events::delete( $selectedEvents );
}elseif( is_object($EM_Event) ){
$events_result = $EM_Event->delete();
}
$plural = (count($selectedEvents) > 1) ? __('Events','events-manager'):__('Event','events-manager');
if($events_result){
$message = ( !empty($EM_Event->feedback_message) ) ? $EM_Event->feedback_message : sprintf(__('%s successfully deleted.','events-manager'),$plural);
$EM_Notices->add_confirm( $message, true );
}else{
$message = ( !empty($EM_Event->errors) ) ? $EM_Event->errors : sprintf(__('%s could not be deleted.','events-manager'),$plural);
$EM_Notices->add_error( $message, true );
}
wp_safe_redirect( em_wp_get_referer() );
exit();
}elseif( $_REQUEST['action'] == 'event_detach' && wp_verify_nonce($_REQUEST['_wpnonce'],'event_detach_'.get_current_user_id().'_'.$EM_Event->event_id) ){
//Detach event and move on
if($EM_Event->detach()){
$EM_Notices->add_confirm( $EM_Event->feedback_message, true );
}else{
$EM_Notices->add_error( $EM_Event->errors, true );
}
wp_safe_redirect(em_wp_get_referer());
exit();
}elseif( $_REQUEST['action'] == 'event_attach' && !empty($_REQUEST['undo_id']) && wp_verify_nonce($_REQUEST['_wpnonce'],'event_attach_'.get_current_user_id().'_'.$EM_Event->event_id) ){
//Detach event and move on
if( $EM_Event->attach( absint($_REQUEST['undo_id']) ) ){
$EM_Notices->add_confirm( $EM_Event->feedback_message, true );
}else{
$EM_Notices->add_error( $EM_Event->errors, true );
}
wp_safe_redirect(em_wp_get_referer());
exit();
}
//AJAX Exit
if( isset($events_result) && !empty($_REQUEST['em_ajax']) ){
if( $events_result ){
$return = array('result'=>true, 'success'=>true, 'message'=>$EM_Event->feedback_message);
}else{
$return = array('result'=>false, 'success'=>false, 'message'=>$EM_Event->feedback_message, 'errors'=>$EM_Event->errors);
}
echo EM_Object::json_encode($return);
edit();
}
}
//Location Actions
if( !empty($_REQUEST['action']) && substr($_REQUEST['action'],0,8) == 'location' ){
global $EM_Location, $EM_Notices;
//Load the location object, with saved event if requested
if( !empty($_REQUEST['location_id']) ){
$EM_Location = new EM_Location( absint($_REQUEST['location_id']) );
}else{
$EM_Location = new EM_Location();
}
if( $_REQUEST['action'] == 'location_save' && $EM_Location->can_manage('edit_locations','edit_others_locations') ){
//Check Nonces
em_verify_nonce('location_save');
//Grab and validate submitted data
if ( $EM_Location->get_post() && $EM_Location->save() ) { //EM_location gets the location if submitted via POST and validates it (safer than to depend on JS)
$EM_Notices->add_confirm($EM_Location->feedback_message, true);
$redirect = !empty($_REQUEST['redirect_to']) ? $_REQUEST['redirect_to'] : em_wp_get_referer();
wp_safe_redirect( $redirect );
exit();
}else{
$EM_Notices->add_error( $EM_Location->get_errors() );
$result = false;
}
}elseif( !empty($_REQUEST['action']) && $_REQUEST['action'] == "location_delete" ){
//delete location
//get object or objects
if( !empty($_REQUEST['locations']) || !empty($_REQUEST['location_id']) ){
$args = false;
if( !empty($_REQUEST['locations']) && EM_Object::array_is_numeric($_REQUEST['locations']) ){
$args = $_REQUEST['locations'];
}elseif( !empty($_REQUEST['location_id']) ){
$args = absint($_REQUEST['location_id']);
}
if( !empty($args) ){
$locations = EM_Locations::get($args);
foreach($locations as $location) {
if( !$location->delete() ){
$EM_Notices->add_error($location->get_errors());
$errors = true;
}
}
}
if( empty($errors) ){
$result = true;
$location_term = ( count($locations) > 1 ) ?__('Locations', 'events-manager') : __('Location', 'events-manager');
$EM_Notices->add_confirm( sprintf(__('%s successfully deleted', 'events-manager'), $location_term) );
}else{
$result = false;
}
}
}elseif( !empty($_REQUEST['action']) && $_REQUEST['action'] == "locations_search" && (!empty($_REQUEST['term']) || !empty($_REQUEST['q'])) ){
$results = array();
if( is_user_logged_in() || ( get_option('dbem_events_anonymous_submissions') && user_can(get_option('dbem_events_anonymous_user'), 'read_others_locations') ) ){
$location_cond = (is_user_logged_in() && !current_user_can('read_others_locations')) ? "AND location_owner=".get_current_user_id() : '';
if( !is_user_logged_in() && get_option('dbem_events_anonymous_submissions') ){
if( !user_can(get_option('dbem_events_anonymous_user'),'read_private_locations') ){
$location_cond = " AND location_private=0";
}
}elseif( is_user_logged_in() && !current_user_can('read_private_locations') ){
$location_cond = " AND location_private=0";
}elseif( !is_user_logged_in() ){
$location_cond = " AND location_private=0";
}
if( EM_MS_GLOBAL && !get_site_option('dbem_ms_mainblog_locations') ){
$location_cond .= " AND blog_id=". absint(get_current_blog_id());
}
$location_cond = apply_filters('em_actions_locations_search_cond', $location_cond);
$term = (isset($_REQUEST['term'])) ? '%'.$wpdb->esc_like(wp_unslash($_REQUEST['term'])).'%' : '%'.$wpdb->esc_like(wp_unslash($_REQUEST['q'])).'%';
$limit = apply_filters('em_locations_autocomplete_limit', 10);
$page = !empty($_REQUEST['page']) && is_numeric($_REQUEST['page']) ? absint($_REQUEST['page']) : 1;
$offset = ($page - 1) * $limit;
// Get the results
$sql = $wpdb->prepare("
SELECT
location_id AS `id`,
Concat( location_name ) AS `label`,
Concat( location_name ) AS `text`,
location_name AS `value`,
location_address AS `address`,
location_town AS `town`,
location_state AS `state`,
location_region AS `region`,
location_postcode AS `postcode`,
location_country AS `country`,
location_latitude AS `latitude`,
location_longitude AS `longitude`
FROM ".EM_LOCATIONS_TABLE."
WHERE ( `location_name` LIKE %s ) AND location_status=1 $location_cond LIMIT $limit OFFSET $offset
", $term); // 'label' is now for backwards compatibility
$results = $wpdb->get_results($sql);
}
$results = apply_filters('em_actions_locations_search_results', $results);
echo EM_Object::json_encode($results);
die();
}
if( isset($result) && $result && !empty($_REQUEST['em_ajax']) ){
$return = array('result'=>true, 'success'=>true, 'message'=>$EM_Location->feedback_message);
echo EM_Object::json_encode($return);
die();
}elseif( isset($result) && !$result && !empty($_REQUEST['em_ajax']) ){
$return = array('result'=>false, 'success'=>false, 'message'=>$EM_Location->feedback_message, 'errors'=>$EM_Notices->get_errors());
echo EM_Object::json_encode($return);
die();
}
}
//Booking Actions
$booking_allowed_actions = array('bookings_approve'=>'approve','bookings_reject'=>'reject','bookings_unapprove'=>'unapprove', 'bookings_delete'=>'delete');
$booking_ajax_actions = array('booking_add', 'booking_add_one', 'booking_cancel', 'booking_save', 'booking_set_status', 'booking_resend_email', 'booking_modify_person', 'bookings_add_note', 'booking_form_summary', 'booking_rsvp_change', 'booking_set_rsvp_status');
$booking_nopriv_actions = array('booking_add', 'booking_form_summary');
$booking_actions = array_merge( $booking_ajax_actions, array_keys($booking_allowed_actions) );
if( !empty($_REQUEST['action']) && in_array($_REQUEST['action'], $booking_actions) && (is_user_logged_in() || (in_array($_REQUEST['action'], $booking_nopriv_actions) && get_option('dbem_bookings_anonymous'))) ){
global $EM_Event, $EM_Booking, $EM_Person;
//Load the booking object, with saved booking if requested
$EM_Booking = ( !empty($_REQUEST['booking_id']) ) ? em_get_booking($_REQUEST['booking_id']) : em_get_booking();
if( !empty($EM_Booking->event_id) ){
//Load the event object, with saved event if requested
$EM_Event = $EM_Booking->get_event();
}elseif( !empty($_REQUEST['event_id']) ){
$EM_Event = new EM_Event( absint($_REQUEST['event_id']) );
}
$result = false;
$feedback = '';
do_action('em_before_booking_action_'.$_REQUEST['action'], $EM_Event, $EM_Booking);
if ( $_REQUEST['action'] == 'booking_add') {
//ADD/EDIT Booking
ob_start();
if( (!defined('WP_CACHE') || !WP_CACHE) && !isset($GLOBALS["wp_fastest_cache"]) ) em_verify_nonce('booking_add');
if( !is_user_logged_in() || get_option('dbem_bookings_double') || !$EM_Event->get_bookings()->has_booking(get_current_user_id()) ){
$EM_Booking->get_post();
$post_validation = $EM_Booking->validate();
do_action('em_booking_add', $EM_Event, $EM_Booking, $post_validation);
if( $post_validation ){
//register the user - or not depending - according to the booking
$registration = em_booking_add_registration($EM_Booking);
$EM_Bookings = $EM_Event->get_bookings();
if( $registration && $EM_Bookings->add($EM_Booking) ){
if( is_user_logged_in() && is_multisite() && !is_user_member_of_blog(get_current_user_id(), get_current_blog_id()) ){
add_user_to_blog(get_current_blog_id(), get_current_user_id(), get_option('default_role'));
}
$result = true;
$EM_Notices->add_confirm( $EM_Bookings->feedback_message );
$feedback = $EM_Bookings->feedback_message;
}else{
$result = false;
if(!$registration){
$EM_Notices->add_error( $EM_Booking->get_errors() );
$feedback = $EM_Booking->feedback_message;
}else{
$EM_Notices->add_error( $EM_Bookings->get_errors() );
$feedback = $EM_Bookings->feedback_message;
}
}
global $em_temp_user_data; $em_temp_user_data = false; //delete registered user temp info (if exists)
}else{
$result = false;
$EM_Notices->add_error( $EM_Booking->get_errors() );
}
}else{
$result = false;
$feedback = get_option('dbem_booking_feedback_already_booked');
$EM_Notices->add_error( $feedback );
}
ob_clean();
}elseif ( $_REQUEST['action'] == 'booking_add_one' && is_object($EM_Event) && is_user_logged_in() ) {
//ADD/EDIT Booking
em_verify_nonce('booking_add_one');
if( get_option('dbem_bookings_double') || !$EM_Event->get_bookings()->has_booking(get_current_user_id()) ){
$EM_Booking = em_get_booking(array('person_id'=>get_current_user_id(), 'event_id'=>$EM_Event->event_id, 'booking_spaces'=>1)); //new booking
// get first ticket that's available
foreach( $EM_Event->get_bookings()->get_available_tickets() as $EM_Ticket ){
if( $EM_Ticket->is_available() ){
$ticket_found = true;
break;
}
}
if( !empty($ticket_found) ){
//get first ticket in this event and book one place there. similar to getting the form values in EM_Booking::get_post_values()
$EM_Ticket_Booking = new EM_Ticket_Booking(array('ticket_id'=>$EM_Ticket->ticket_id, 'booking_id' => $EM_Booking->booking_id, 'booking' => $EM_Booking));
$EM_Booking->get_tickets_bookings()->add( $EM_Ticket_Booking );
$post_validation = $EM_Booking->validate();
do_action('em_booking_add', $EM_Event, $EM_Booking, $post_validation);
if( $post_validation ){
//Now save booking
if( $EM_Event->get_bookings()->add($EM_Booking) ){
$result = true;
$EM_Notices->add_confirm( $EM_Event->get_bookings()->feedback_message );
$feedback = $EM_Event->get_bookings()->feedback_message;
}else{
$result = false;
$EM_Notices->add_error( $EM_Event->get_bookings()->get_errors() );
$feedback = $EM_Event->get_bookings()->feedback_message;
if( empty($feedback) ) $feedback = implode("\r\n", $EM_Event->get_bookings()->get_errors());
}
}else{
$result = false;
$EM_Notices->add_error( $EM_Booking->get_errors() );
$feedback = $EM_Event->get_bookings()->feedback_message;
}
}else{
$result = false;
$EM_Notices->add_error( get_option('dbem_booking_feedback_full') );
$feedback = get_option('dbem_booking_feedback_full');
}
}else{
$result = false;
$feedback = get_option('dbem_booking_feedback_already_booked');
$EM_Notices->add_error( $feedback );
}
}elseif ( $_REQUEST['action'] == 'booking_cancel') {
//Cancel Booking
em_verify_nonce('booking_cancel');
if( $EM_Booking->can_manage() || $EM_Booking->person->ID == get_current_user_id() ){
if( !$EM_Booking->can_cancel() ){ // admins also cannot cancel their own bookings this way, only via admin ui
$result = false;
$feedback = esc_html__('Cancellations are not permitted for this booking.', 'events-manager');
$EM_Notices->add_error( $feedback );
}else{
if( $EM_Booking->cancel() ){
$result = true;
if( !defined('DOING_AJAX') ){
if( $EM_Booking->person->ID == get_current_user_id() ){
$EM_Notices->add_confirm(get_option('dbem_booking_feedback_cancelled'), true );
}else{
$EM_Notices->add_confirm( $EM_Booking->feedback_message, true );
}
wp_safe_redirect( $_SERVER['HTTP_REFERER'] );
exit();
}
}else{
$result = false;
$EM_Notices->add_error( $EM_Booking->get_errors() );
$feedback = $EM_Booking->feedback_message;
}
}
}else{
$EM_Notices->add_error( __('You must log in to cancel your booking.', 'events-manager') );
}
//TODO user action shouldn't check permission, booking object should.
}elseif ( $_REQUEST['action'] == 'booking_rsvp_change' && isset($_REQUEST['status']) ) {
// Change RSVP status
em_verify_nonce('booking_rsvp');
$status = absint($_REQUEST['status']);
if( $EM_Booking->can_manage() || $EM_Booking->person->ID == get_current_user_id() ){
if( $EM_Booking->can_rsvp( $status ) ) {
if ( $EM_Booking->set_rsvp_status( $status ) ) {
$result = true;
if ( !defined( 'DOING_AJAX' ) ) {
$EM_Notices->add_confirm( $EM_Booking->feedback_message, true );
wp_safe_redirect( $_SERVER['HTTP_REFERER'] );
exit();
}
} else {
$result = false;
$EM_Notices->add_error( $EM_Booking->get_errors() );
$feedback = $EM_Booking->feedback_message;
}
} else {
$rsvp_status = EM_Booking::get_rsvp_statuses( $status );
$feedback = sprintf( esc_html__('You cannot RSVP to this booking with %s', 'events-manager'), "'" . $rsvp_status->label_action . "'");
$EM_Notices->add_error($feedback);
}
}else{
$EM_Notices->add_error( __('You must log in to cancel your booking.', 'events-manager') );
}
//TODO user action shouldn't check permission, booking object should.
}elseif( array_key_exists($_REQUEST['action'], $booking_allowed_actions) && $EM_Event->can_manage('manage_bookings','manage_others_bookings') ){
//Event Admin only actions
em_verify_nonce($_REQUEST['action'], 'nonce');
$action = $booking_allowed_actions[$_REQUEST['action']];
//Just do it here, since we may be deleting bookings of different events.
if( !empty($_REQUEST['bookings']) && EM_Object::array_is_numeric($_REQUEST['bookings'])){
$results = array();
foreach($_REQUEST['bookings'] as $booking_id){
$EM_Booking = em_get_booking($booking_id);
$result = $EM_Booking->$action();
$results[] = $result;
if( !in_array(false, $results) && !$result ){
$feedback = $EM_Booking->feedback_message;
}
}
$result = !in_array(false,$results);
}elseif( is_object($EM_Booking) ){
$result = $EM_Booking->$action();
$feedback = $EM_Booking->feedback_message;
}
//FIXME not adhereing to object's feedback or error message, like other bits in this file.
//TODO multiple deletion won't work in ajax
if( !empty($_REQUEST['em_ajax']) ){
if( $result ){
echo $feedback;
}else{
echo '<span style="color:red">'.$feedback.'</span>';
}
die();
}else{
if( $result ){
$EM_Notices->add_confirm($feedback);
}else{
$EM_Notices->add_error($feedback);
}
}
}elseif( $_REQUEST['action'] == 'booking_save' ){
em_verify_nonce('booking_save_'.$EM_Booking->booking_id);
if( $EM_Booking->can_manage('manage_bookings','manage_others_bookings') ){
if ($EM_Booking->get_post(true) && $EM_Booking->validate(true) && $EM_Booking->save(false) ){
$EM_Notices->add_confirm( $EM_Booking->feedback_message, true );
$redirect = !empty($_REQUEST['redirect_to']) ? $_REQUEST['redirect_to'] : em_wp_get_referer();
wp_safe_redirect( $redirect );
exit();
}else{
$result = false;
$EM_Notices->add_error( $EM_Booking->get_errors() );
$feedback = $EM_Booking->feedback_message;
}
}
}elseif( $_REQUEST['action'] == 'booking_set_status' ){
em_verify_nonce('booking_set_status_'.$EM_Booking->booking_id);
if( $EM_Booking->can_manage('manage_bookings','manage_others_bookings') && $_REQUEST['booking_status'] != $EM_Booking->booking_status ){
if ( $EM_Booking->set_status($_REQUEST['booking_status'], false, true) ){
if( !empty($_REQUEST['send_email']) ){
if( $EM_Booking->email() ){
if( $EM_Booking->mails_sent > 0 ) {
$EM_Booking->feedback_message .= " ".__('Email Sent.','events-manager');
}else{
$EM_Booking->feedback_message .= " "._x('No emails to send for this booking.', 'bookings', 'events-manager');
}
}else{
$EM_Booking->feedback_message .= ' <span style="color:red">'.__('ERROR : Email Not Sent.','events-manager').'</span>';
}
}
$EM_Notices->add_confirm( $EM_Booking->feedback_message, true );
$redirect = !empty($_REQUEST['redirect_to']) ? $_REQUEST['redirect_to'] : em_wp_get_referer();
wp_safe_redirect( $redirect );
exit();
}else{
$result = false;
$EM_Notices->add_error( $EM_Booking->get_errors() );
$feedback = $EM_Booking->feedback_message;
}
}
}elseif( $_REQUEST['action'] == 'booking_set_rsvp_status' ){
em_verify_nonce('booking_set_rsvp_status_'.$EM_Booking->booking_id);
$status = $_REQUEST['booking_rsvp_status'] === '' ? null : absint($_REQUEST['booking_rsvp_status']);
if( $EM_Booking->can_manage('manage_bookings','manage_others_bookings') && $status !== $EM_Booking->booking_rsvp_status ){
$result = $EM_Booking->set_rsvp_status($status, false, true);
if ( $result ){
$EM_Notices->add_confirm( $EM_Booking->feedback_message, true );
$redirect = !empty($_REQUEST['redirect_to']) ? $_REQUEST['redirect_to'] : em_wp_get_referer();
wp_safe_redirect( $redirect );
exit();
}else{
$EM_Notices->add_error( $EM_Booking->get_errors() );
$feedback = $EM_Booking->feedback_message;
}
}
}elseif( $_REQUEST['action'] == 'booking_resend_email' ){
em_verify_nonce('booking_resend_email_'.$EM_Booking->booking_id);
if( $EM_Booking->can_manage('manage_bookings','manage_others_bookings') ){
if( $EM_Booking->email(false, true) ){
$result = true;
if( $EM_Booking->mails_sent > 0 ) {
$feedback = __('Email Sent.','events-manager');
$EM_Notices->add_confirm( $feedback, !defined('DOING_AJAX') );
}else{
$feedback = _x('No emails to send for this booking.', 'bookings', 'events-manager');
$EM_Notices->add_confirm( $feedback, !defined('DOING_AJAX') );
}
}else{
$EM_Notices->add_error( __('ERROR : Email Not Sent.','events-manager'), !defined('DOING_AJAX') );
$feedback = $EM_Booking->feedback_message;
}
if( !empty($_REQUEST['em_ajax']) ){
if( $result ){
echo $feedback;
}else{
echo '<span style="color:red">'.$feedback.'</span>';
}
die();
}else{
$redirect = !empty($_REQUEST['redirect_to']) ? $_REQUEST['redirect_to'] : em_wp_get_referer();
wp_safe_redirect($redirect);
exit();
}
}
}elseif( $_REQUEST['action'] == 'booking_modify_person' ){
em_verify_nonce('booking_modify_person_'.$EM_Booking->booking_id);
if( $EM_Booking->can_manage('manage_bookings','manage_others_bookings') ){
global $wpdb;
if( //save just the booking meta, avoid extra unneccesary hooks and things to go wrong
$EM_Booking->is_no_user() && $EM_Booking->get_person_post() &&
$EM_Booking->update_meta('registration', $EM_Booking->booking_meta['registration'])
){
$EM_Notices->add_confirm( $EM_Booking->feedback_message, true );
$redirect = !empty($_REQUEST['redirect_to']) ? $_REQUEST['redirect_to'] : em_wp_get_referer();
wp_safe_redirect( $redirect );
exit();
}else{
$result = false;
$EM_Notices->add_error( $EM_Booking->get_errors() );
$feedback = $EM_Booking->feedback_message;
}
}
do_action('em_booking_modify_person', $EM_Event, $EM_Booking);
}elseif( $_REQUEST['action'] == 'bookings_add_note' && $EM_Booking->can_manage('manage_bookings','manage_others_bookings') ) {
em_verify_nonce('bookings_add_note');
if( $EM_Booking->add_note(wp_unslash($_REQUEST['booking_note'])) ){
$EM_Notices->add_confirm($EM_Booking->feedback_message, true);
$redirect = !empty($_REQUEST['redirect_to']) ? $_REQUEST['redirect_to'] : em_wp_get_referer();
wp_safe_redirect( $redirect );
exit();
}else{
$EM_Notices->add_error($EM_Booking->errors);
}
}elseif( $_REQUEST['action'] === 'booking_form_summary' ){
$EM_Booking->get_post();
// wrap in main tag as we only need what's inside by JS
echo '<main>';
if( get_option('dbem_bookings_summary') ){
em_locate_template('forms/bookingform/summary.php', true, array('EM_Event' => $EM_Event, 'EM_Booking' => $EM_Booking));
}
echo $EM_Booking->output_intent_html();
echo '</main>';
exit();
}
if( $result && defined('DOING_AJAX') ){
$return = array('result'=>true, 'success'=>true, 'message'=>$feedback);
header( 'Content-Type: application/javascript; charset=UTF-8', true ); //add this for HTTP -> HTTPS requests which assume it's a cross-site request
echo EM_Object::json_encode(apply_filters('em_action_'.$_REQUEST['action'], $return, $EM_Booking));
die();
}elseif( !$result && defined('DOING_AJAX') ){
$return = array('result'=>false, 'success'=>false, 'message'=>$feedback, 'errors'=>$EM_Notices->get_errors());
header( 'Content-Type: application/javascript; charset=UTF-8', true ); //add this for HTTP -> HTTPS requests which assume it's a cross-site request
echo EM_Object::json_encode(apply_filters('em_action_'.$_REQUEST['action'], $return, $EM_Booking));
die();
}
}elseif( !empty($_REQUEST['action']) && $_REQUEST['action'] == 'booking_add' && !is_user_logged_in() && !get_option('dbem_bookings_anonymous')){
global $EM_Booking;
$EM_Booking = ( !empty($_REQUEST['booking_id']) ) ? em_get_booking($_REQUEST['booking_id']) : em_get_booking();
$EM_Notices->add_error( get_option('dbem_booking_feedback_log_in') );
if( defined('DOING_AJAX') ){
$return = array('result'=>false, 'success'=>false, 'message'=>get_option('dbem_booking_feedback_log_in'), 'errors'=>$EM_Notices->get_errors());
echo EM_Object::json_encode(apply_filters('em_action_'.$_REQUEST['action'], $return, $EM_Booking));
die();
}
}
//AJAX call for searches
if( !empty($_REQUEST['action']) && substr($_REQUEST['action'],0,6) == 'search' ){
//default search arts
if( $_REQUEST['action'] == 'search_states' ){
$results = array();
$conds = array();
if( !empty($_REQUEST['country']) ){
$conds[] = $wpdb->prepare("(location_country = '%s' OR location_country IS NULL )", $_REQUEST['country']);
}
if( !empty($_REQUEST['region']) ){
$conds[] = $wpdb->prepare("( location_region = '%s' )", $_REQUEST['region']);
}
$cond = (count($conds) > 0) ? "AND ".implode(' AND ', $conds):'';
$results = $wpdb->get_col("SELECT DISTINCT location_state FROM " . EM_LOCATIONS_TABLE ." WHERE location_state IS NOT NULL AND location_state != '' $cond ORDER BY location_state");
if( $_REQUEST['return_html'] ) {
//quick shortcut for quick html form manipulation
ob_start();
?>
<option value=''><?php echo get_option('dbem_search_form_states_label') ?></option>
<?php
foreach( $results as $result ){
echo "<option>{$result}</option>";
}
$return = ob_get_clean();
echo apply_filters('em_ajax_search_states', $return);
exit();
}else{
echo EM_Object::json_encode($results);
exit();
}
}
if( $_REQUEST['action'] == 'search_towns' ){
$results = array();
$conds = array();
if( !empty($_REQUEST['country']) ){
$conds[] = $wpdb->prepare("(location_country = '%s' OR location_country IS NULL )", $_REQUEST['country']);
}
if( !empty($_REQUEST['region']) ){
$conds[] = $wpdb->prepare("( location_region = '%s' )", $_REQUEST['region']);
}
if( !empty($_REQUEST['state']) ){
$conds[] = $wpdb->prepare("(location_state = '%s' )", $_REQUEST['state']);
}
$cond = (count($conds) > 0) ? "AND ".implode(' AND ', $conds):'';
$results = $wpdb->get_col("SELECT DISTINCT location_town FROM " . EM_LOCATIONS_TABLE ." WHERE location_town IS NOT NULL AND location_town != '' $cond ORDER BY location_town");
if( $_REQUEST['return_html'] ) {
//quick shortcut for quick html form manipulation
ob_start();
?>
<option value=''><?php echo get_option('dbem_search_form_towns_label'); ?></option>
<?php
foreach( $results as $result ){
echo "<option>$result</option>";
}
$return = ob_get_clean();
echo apply_filters('em_ajax_search_towns', $return);
exit();
}else{
echo EM_Object::json_encode($results);
exit();
}
}
if( $_REQUEST['action'] == 'search_regions' ){
$results = array();
if( !empty($_REQUEST['country']) ){
$conds[] = $wpdb->prepare("(location_country = '%s' )", $_REQUEST['country']);
}
$cond = (count($conds) > 0) ? "AND ".implode(' AND ', $conds):'';
$results = $wpdb->get_results("SELECT DISTINCT location_region AS value FROM " . EM_LOCATIONS_TABLE ." WHERE location_region IS NOT NULL AND location_region != '' $cond ORDER BY location_region");
if( $_REQUEST['return_html'] ) {
//quick shortcut for quick html form manipulation
ob_start();
?>
<option value=''><?php echo get_option('dbem_search_form_regions_label'); ?></option>
<?php
foreach( $results as $result ){
echo "<option>{$result->value}</option>";
}
$return = ob_get_clean();
echo apply_filters('em_ajax_search_regions', $return);
exit();
}else{
echo EM_Object::json_encode($results);
exit();
}
}
}
//EM Ajax requests require this flag.
if( is_user_logged_in() ){
//Admin operations
//Specific Oject Ajax
if( !empty($_REQUEST['em_obj']) && $_REQUEST['em_obj'] == 'em_bookings_events_table' ){
include_once('admin/bookings/em-events.php');
em_bookings_events_table();
exit();
}
}
//Export CSV - WIP
if( !empty($_REQUEST['action']) && $_REQUEST['action'] == 'export_bookings_csv' && wp_verify_nonce($_REQUEST['_emnonce'], 'export_bookings_csv')){
if( !empty($_REQUEST['event_id']) ){
$EM_Event = em_get_event( absint($_REQUEST['event_id']) );
}
//sort out cols
if( !empty($_REQUEST['cols']) && is_array($_REQUEST['cols']) ){
$cols = array();
foreach($_REQUEST['cols'] as $col => $active){
if( $active ){ $cols[] = $col; }
}
$_REQUEST['cols'] = $cols;
}
$_REQUEST['limit'] = 0;
// set up output objects, http headers, etc.
$show_tickets = !empty($_REQUEST['show_tickets']);
$EM_Bookings_Table = new EM_Bookings_Table($show_tickets);
$EM_Bookings_Table->limit = 150; //if you're having server memory issues, try messing with this number
$EM_Bookings = $EM_Bookings_Table->get_bookings();
$handle = fopen("php://output", "w");
$delimiter = !defined('EM_CSV_DELIMITER') ? ',' : EM_CSV_DELIMITER;
$delimiter = apply_filters('em_csv_delimiter', $delimiter);
//generate bookings export according to search request
header("Content-Type: application/octet-stream; charset=utf-8");
$file_name = !empty($EM_Event->event_slug) ? $EM_Event->event_slug:get_bloginfo();
header("Content-Disposition: Attachment; filename=".sanitize_title($file_name)."-bookings-export.csv");
do_action('em_csv_header_output');
echo "\xEF\xBB\xBF"; // UTF-8 for MS Excel (a little hacky... but does the job)
// csv headers
if ( !defined('EM_CSV_DISABLE_HEADERS') || !EM_CSV_DISABLE_HEADERS ) {
if( !empty($_REQUEST['event_id']) ) {
fputcsv($handle, array( __('Event','events-manager') . ' : ' . $EM_Event->event_name ), $delimiter);
if( $EM_Event->location_id > 0 ) {
fputcsv($handle, array( __('Where','events-manager') . ' - ' . $EM_Event->get_location()->location_name ), $delimiter);
}
fputcsv($handle, array( __('When','events-manager') . ' : ' . $EM_Event->output('#_EVENTDATES - #_EVENTTIMES') ), $delimiter);
}
$EM_DateTime = new EM_DateTime(current_time('timestamp'));
fputcsv($handle, array( sprintf(__('Exported booking on %s','events-manager'), $EM_DateTime->format('D d M Y h:i')) ), $delimiter);
fputcsv($handle, array(), $delimiter);
}
// Header and Rows
fputcsv($handle, $EM_Bookings_Table->get_headers(true), $delimiter);
while( !empty($EM_Bookings->bookings) ){
foreach( $EM_Bookings->bookings as $EM_Booking ) { /* @var EM_Booking $EM_Booking */
//Display all values
if( $show_tickets ){
foreach($EM_Booking->get_tickets_bookings() as $EM_Ticket_Bookings){ /* @var EM_Ticket_Bookings $EM_Ticket_Bookings */
// since we're splitting by ticket type, we don't need individual EM_Ticket_Booking objects, but the wrapper object
$EM_Bookings_Table->ticket = $EM_Ticket_Bookings->get_ticket();
$row = $EM_Bookings_Table->get_row_csv($EM_Booking);
fputcsv($handle, $row, $delimiter);
$EM_Bookings_Table->ticket = null;
}
}else{
$row = $EM_Bookings_Table->get_row_csv($EM_Booking);
fputcsv($handle, $row, $delimiter);
}
}
//reiterate loop
$EM_Bookings_Table->offset += $EM_Bookings_Table->limit;
$EM_Bookings = $EM_Bookings_Table->get_bookings();
}
fclose($handle);
exit();
}
}
/**
* New action to handle init of EM. It is now being fired in wp_loaded rather than init, the below will either queue up the em_init_actions_start() (previously the em_init_actions() function) if wp_loaded hasn't fired yet, or execute it if added later for whatever reason.
* @return void
*/
function em_init_actions(){
if( !did_action('wp_loaded') ){
add_action('wp_loaded', 'em_init_actions_start', 11);
}else{
em_init_actions_start();
}
}
add_action('init', 'em_init_actions', 11);
/**
* Handles AJAX Bookings admin table filtering, view changes and pagination
*/
function em_ajax_bookings_table(){
if( !empty($_REQUEST['_emnonce']) && check_admin_referer('em_bookings_table', '_emnonce') ){
$EM_Bookings_Table = new EM_Bookings_Table();
$EM_Bookings_Table->display();
}else{
check_admin_referer('em_bookings_table');
$EM_Bookings_Table = new EM_Bookings_Table();
if( !empty($_REQUEST['table_id']) ) { // so modals work linked to the ID
$EM_Bookings_Table->uid = $EM_Bookings_Table->id . '-' . absint($_REQUEST['table_id']);
}
$EM_Bookings_Table->output_table();
}
exit();
}
add_action('wp_ajax_em_bookings_table','em_ajax_bookings_table');
function em_ajax_bookings_table_row(){
if( !empty($_REQUEST['_emnonce']) && check_admin_referer('em_bookings_table', '_emnonce') && !empty($_REQUEST['row_action']) ){
$allowed_actions = array('bookings_approve'=>'approve','bookings_reject'=>'reject','bookings_unapprove'=>'unapprove', 'bookings_delete'=>'delete');
$EM_Booking = ( !empty($_REQUEST['booking_id']) ) ? em_get_booking($_REQUEST['booking_id']) : em_get_booking();
if( array_key_exists($_REQUEST['row_action'], $allowed_actions) && $EM_Booking->can_manage('manage_bookings','manage_others_bookings') ){
//Event Admin only actions
$action = $allowed_actions[$_REQUEST['row_action']];
$result = $EM_Booking->$action();
if( !$result ){
$EM_Booking->feedback_message = '<span style="color:red">'.$EM_Booking->feedback_message.'</span>';
}
$EM_Bookings_Table = new EM_Bookings_Table();
$EM_Bookings_Table->single_row( $EM_Booking );
die();
}
}
}
add_action('wp_ajax_em_bookings_table_row','em_ajax_bookings_table_row');
/**
* Handles AJAX Searching and Pagination for events, locations, tags and categories
*/
function em_ajax_search_and_pagination(){
if( !defined('EM_DOING_AJAX') ) define('EM_DOING_AJAX', true);
$args = array( 'owner' => false, 'pagination' => 1, 'ajax' => true);
ob_start();
if( $_REQUEST['action'] == 'search_events' ){
// new and default way of doing things
$view = !empty($_REQUEST['view']) && preg_match('/^[a-zA-Z0-9-_]+$/', $_REQUEST['view']) ? $_REQUEST['view'] : 'list';
$args['scope'] = get_option('dbem_events_page_scope');
$args = EM_Events::get_post_search($args);
if( get_option('dbem_search_form_cookies', true) ) {
if ( empty( $_REQUEST['clear_search'] ) ) {
// clear known unecesssary and empty keys
$cookie_args = array();
$known_args = array( 'action', 'view_id', 'view', 'ajax', 'owner', 'pagination' );
foreach ( $args as $k => $v ) {
if ( !in_array( $k, $known_args ) && ! empty( $v ) ) {
$cookie_args[ $k ] = $v;
}
}
// deal with scope in case empty
if ( !empty($cookie_args['scope']) && !empty($_REQUEST['scope']) && is_array($_REQUEST['scope']) && empty($_REQUEST['scope'][0]) && empty($_REQUEST['scope'][1]) ) {
unset($cookie_args['scope']);
}
}
if( !empty($cookie_args) ) {
setcookie( 'em_search_events', base64_encode( json_encode( $args ) ), time() + MONTH_IN_SECONDS, COOKIEPATH, COOKIE_DOMAIN, is_ssl(), true );
} else {
setcookie( 'em_search_events', null, time() - 30, COOKIEPATH, COOKIE_DOMAIN, is_ssl(), true );
unset($_COOKIE['em_search_events']);
}
}
$search_args = em_get_search_form_defaults($args);
$args = array_merge($search_args, $args);
$args['limit'] = !empty($args['limit']) ? $args['limit'] : get_option('dbem_events_default_limit');
em_output_events_view( $args, $view );
}elseif( $_REQUEST['action'] == 'search_locations'){
// new and default way of doing things
$view = !empty($_REQUEST['view']) && preg_match('/^[a-zA-Z0-9-_]+$/', $_REQUEST['view']) ? $_REQUEST['view'] : 'list';
$args = EM_Locations::get_post_search($args);
$search_args = em_get_search_form_defaults($args);
$args = array_merge($search_args, $args);
if( !empty($args['eventful']) ) $args['scope'] = 'future'; // so eventful searches show upcoming event locations only
switch( $view ){
case 'list':
$args = EM_Locations::get_post_search($args);
$args['limit'] = !empty($args['limit']) ? $args['limit'] : get_option('dbem_locations_default_limit');
em_locate_template('templates/locations-list.php', true, array('args'=>$args)); //if successful, this template overrides the settings and defaults, including search
break;
case 'map':
$args = EM_Locations::get_post_search($args);
$args['width'] = '100%';
$args['height'] = 0;
$args['limit'] = 0;
echo em_get_locations_map_shortcode( $args );
break;
}
em_output_locations_view($args, $view);
}else{
if( $_REQUEST['action'] == 'search_events_grouped' && defined('DOING_AJAX') ) {
// legacy
$args['scope'] = get_option('dbem_events_page_scope');
$args = EM_Events::get_post_search($args);
// set cookies if relevant
if( get_option('dbem_search_form_cookies', true) ) {
if ( empty( $_REQUEST['clear_search'] ) ) {
setcookie( 'em_search_events', base64_encode( json_encode( $args ) ), time() + MONTH_IN_SECONDS, COOKIEPATH, COOKIE_DOMAIN, is_ssl(), true );
} else {
setcookie( 'em_search_events', null, time() - 30, COOKIEPATH, COOKIE_DOMAIN, is_ssl(), true );
}
}
// set limit and output template
$args['limit'] = !empty($args['limit']) ? $args['limit'] : get_option('dbem_events_default_limit');
em_locate_template('templates/events-list-grouped.php', true, array('args' => $args)); //if successful, this template overrides the settings and defaults, including search
}elseif( $_REQUEST['action'] == 'search_tags' && defined('DOING_AJAX') ){
$args = EM_Tags::get_post_search($args);
$args['limit'] = !empty($args['limit']) ? $args['limit'] : get_option('dbem_tags_default_limit');
em_locate_template('templates/tags-list.php', true, array('args'=>$args)); //if successful, this template overrides the settings and defaults, including search
}elseif( $_REQUEST['action'] == 'search_cats' && defined('DOING_AJAX') ){
$args = EM_Categories::get_post_search($args);
$args['limit'] = !empty($args['limit']) ? $args['limit'] : get_option('dbem_categories_default_limit');
em_locate_template('templates/categories-list.php', true, array('args'=>$args)); //if successful, this template overrides the settings and defaults, including search
}
}
echo apply_filters('em_ajax_'.$_REQUEST['action'], ob_get_clean(), $args);
exit();
}
add_action('wp_ajax_nopriv_search_events','em_ajax_search_and_pagination');
add_action('wp_ajax_search_events','em_ajax_search_and_pagination');
add_action('wp_ajax_nopriv_search_events_grouped','em_ajax_search_and_pagination');
add_action('wp_ajax_search_events_grouped','em_ajax_search_and_pagination');
add_action('wp_ajax_nopriv_search_locations','em_ajax_search_and_pagination');
add_action('wp_ajax_search_locations','em_ajax_search_and_pagination');
add_action('wp_ajax_nopriv_search_tags','em_ajax_search_and_pagination');
add_action('wp_ajax_search_tags','em_ajax_search_and_pagination');
add_action('wp_ajax_nopriv_search_cats','em_ajax_search_and_pagination');
add_action('wp_ajax_search_cats','em_ajax_search_and_pagination');
/*
Added in dev 5.4.4.2 but may delete in favour of Google autocomplete service
function em_ajax_geocoding_search(){
//GeoNames
if( !empty($_REQUEST['q']) && get_option('dbem_geonames_username') ){
$url = 'http://api.geonames.org/searchJSON?username='.get_option('dbem_geonames_username').'&featureClass=p&style=full&maxRows=12&q=' . rawurlencode(utf8_encode($_REQUEST['q']));
if( !empty($_REQUEST['country']) ){
$url .= '&countryBias=' . rawurlencode(utf8_encode($_REQUEST['country']));
}
if( !empty($_REQUEST['callback']) ){
$url .= '&callback=' . rawurlencode(utf8_encode($_REQUEST['callback']));
}
};
if( !empty($url) ){
$return = wp_remote_get($url);
if( !is_wp_error($return) ){
echo $return['body'];
die();
}
}
//If nothing is set up
$default = array('geonames'=>array(array('name'=>'No Information Available','lat'=>'', 'lng'=>'', 'adminName1'=> '', 'countryName'=>'')));
echo json_encode($default);
die();
}
add_action('wp_ajax_nopriv_geocoding_search','em_ajax_geocoding_search');
add_action('wp_ajax_geocoding_search','em_ajax_geocoding_search');
*/
?>