my-calendar-locations.php
54 KB
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
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
<?php
/**
* Update & Add Locations
*
* @category Locations
* @package My Calendar
* @author Joe Dolson
* @license GPLv2 or later
* @link https://www.joedolson.com/my-calendar/
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Handle updating location posts
*
* @param array $where Array with where query.
* @param array $data saved location data.
* @param array $post POST data.
*
* @return int post ID
*/
function mc_update_location_post( $where, $data, $post ) {
// if the location save was successful.
$location_id = $where['location_id'];
$post_id = mc_get_location_post( $location_id, false );
// If, after all that, the post doesn't exist, create it.
if ( ! get_post_status( $post_id ) ) {
$post['update'] = 'true';
$post_id = mc_create_location_post( $location_id, $data, $post );
}
$title = $data['location_label'];
$post_status = 'publish';
$auth = get_current_user_id();
$type = 'mc-locations';
$my_post = array(
'ID' => $post_id,
'post_title' => $title,
'post_status' => $post_status,
'post_author' => $auth,
'post_name' => sanitize_title( $title ),
'post_type' => $type,
);
if ( mc_switch_sites() && defined( BLOG_ID_CURRENT_SITE ) ) {
switch_to_blog( BLOG_ID_CURRENT_SITE );
}
$post_id = wp_update_post( $my_post );
/**
* Executed an action when a location post is updated.
*
* @hook mc_update_location_posts
*
* @param {int} $post_id Post ID.
* @param {array} $post POST Array of data sent to create post.
* @param {array} $data Data for this location.
* @param {int} $location_id Location ID.
*/
do_action( 'mc_update_location_post', $post_id, $_POST, $data, $location_id );
if ( mc_switch_sites() ) {
restore_current_blog();
}
return $post_id;
}
add_action( 'mc_modify_location', 'mc_update_location_post', 10, 3 );
/**
* Create a post for My Calendar location data on save
*
* @param bool|int $location_id Result of save action; location ID or false.
* @param array $data Saved event data.
* @param array $post POST data.
*
* @return int|false newly created post ID or false if error.
*/
function mc_create_location_post( $location_id, $data, $post = array() ) {
if ( ! $location_id ) {
return false;
}
$post_id = mc_get_location_post( $location_id, false );
// If not post ID or the post ID has no status.
if ( ! $post_id || ! get_post_status( $post_id ) ) {
$title = $data['location_label'];
$post_status = 'publish';
$auth = get_current_user_id();
$type = 'mc-locations';
$my_post = array(
'post_title' => $title,
'post_status' => $post_status,
'post_author' => $auth,
'post_name' => sanitize_title( $title ),
'post_date' => current_time( 'Y-m-d H:i:s' ),
'post_type' => $type,
);
$post_id = wp_insert_post( $my_post );
if ( isset( $post['update'] ) ) {
mc_update_location_post_relationship( $location_id, $post_id );
} else {
mc_transition_location( $location_id, $post_id );
}
/**
* Executed an action when a location post is created.
*
* @hook mc_create_location_posts
*
* @param {int} $post_id Post ID.
* @param {array} $post POST Array of data sent to create post.
* @param {array} $data Data for this location.
* @param {int} $location_id Location ID.
*/
do_action( 'mc_create_location_post', $post_id, $post, $data, $location_id );
wp_publish_post( $post_id );
}
return $post_id;
}
add_action( 'mc_save_location', 'mc_create_location_post', 10, 3 );
/**
* Update custom fields for a location.
*
* @param int $post_id Post ID associated with location.
* @param array $post POST data.
* @param array $data Saved location data.
* @param int $location_id Location ID in table.
*
* @return array Errors.
*/
function mc_update_location_custom_fields( $post_id, $post, $data, $location_id ) {
$fields = mc_location_fields();
$field_errors = array();
foreach ( $fields as $name => $field ) {
if ( isset( $post[ $name ] ) ) {
if ( ! isset( $field['sanitize_callback'] ) || ( isset( $field['sanitize_callback'] ) && ! function_exists( $field['sanitize_callback'] ) ) ) {
// if no sanitization is provided, we'll prep it for SQL and strip tags.
$sanitized = sanitize_text_field( strip_tags( urldecode( $post[ $name ] ) ) );
} else {
$sanitized = call_user_func( $field['sanitize_callback'], urldecode( $post[ $name ] ) );
}
$success = update_post_meta( $post_id, $name, $sanitized );
if ( ! $success ) {
$field_errors[] = $name;
}
}
}
return $field_errors;
}
add_action( 'mc_update_location_post', 'mc_update_location_custom_fields', 10, 4 );
/**
* Delete custom post type associated with event
*
* @param int $result Result of delete action.
* @param int $location_id Location ID.
*/
function mc_location_delete_post( $result, $location_id ) {
global $wpdb;
$post = mc_get_location_post( $location_id, false );
if ( $post ) {
wp_delete_post( $post, true );
// Delete post relationship.
$wpdb->query( $wpdb->prepare( 'DELETE FROM ' . my_calendar_location_relationships_table() . ' WHERE post_id = %d', $post ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
/**
* Executed an action when a location's post is deleted.
*
* @hook mc_delete_location_posts
*
* @param {int} $location_id Location deleted.
* @param {int} $post Post ID.
*/
do_action( 'mc_delete_location_posts', $location_id, $post );
}
}
add_action( 'mc_delete_location', 'mc_location_delete_post', 10, 2 );
/**
* Get the location post for a location.
*
* @param int $location_id Location ID.
* @param bool $type True for full post object.
*
* @return object|int|false WP_Post, post ID, or false if not found.
*/
function mc_get_location_post( $location_id, $type = true ) {
$mcdb = mc_is_remote_db();
$post_ids = $mcdb->get_results( $mcdb->prepare( 'SELECT post_id FROM ' . my_calendar_location_relationships_table() . ' WHERE location_id = %d', $location_id ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
// If there are multiple records for this post, delete extras.
$post_id = false;
foreach ( $post_ids as $rid ) {
$id = $rid->post_id;
if ( ! 'mc-locations' === get_post_type( $id ) ) {
$mcdb->query( $mcdb->prepare( 'DELETE FROM ' . my_calendar_location_relationships_table() . ' WHERE post_id = %d', $id ) );
} else {
$post_id = $id;
break;
}
}
if ( ! $post_id ) {
// Copy location into relationships table.
$post_id = false;
$query = $mcdb->prepare( "SELECT post_id FROM $mcdb->postmeta where meta_key ='_mc_location_id' and meta_value = %d", $location_id );
$posts = $mcdb->get_col( $query ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
if ( isset( $posts[0] ) ) {
$post_id = $posts[0];
}
mc_transition_location( $location_id, $post_id );
}
return ( $type ) ? get_post( $post_id ) : $post_id;
}
/**
* Get location ID from post.
*
* @param int $post_ID Post ID.
*
* @return int
*/
function mc_get_location_id( $post_ID ) {
$mcdb = mc_is_remote_db();
$location_id = $mcdb->get_var( $mcdb->prepare( 'SELECT location_id FROM ' . my_calendar_location_relationships_table() . ' WHERE post_id = %d', $post_ID ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
if ( ! $location_id ) {
// Migrate from previous method of storing location IDs.
$location_id = get_post_meta( $post_ID, '_mc_location_id', true );
}
return $location_id;
}
/**
* Update a single field in a location.
*
* @param string $field field name.
* @param int|float $data data to update to.
* @param int $location location ID.
*
* @return mixed boolean/int query result
*/
function mc_update_location( $field, $data, $location ) {
global $wpdb;
$field = sanitize_key( $field );
if ( 'location_latitude' === $field || 'location_longitude' === $field ) {
$result = $wpdb->query( $wpdb->prepare( 'UPDATE ' . my_calendar_locations_table() . " SET $field = %f WHERE location_id=%d", $data, $location ) ); // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared,WordPress.DB.PreparedSQL.NotPrepared
} else {
$result = $wpdb->query( $wpdb->prepare( 'UPDATE ' . my_calendar_locations_table() . " SET $field = %d WHERE location_id=%d", $data, $location ) ); // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared,WordPress.DB.PreparedSQL.NotPrepared
}
return $result;
}
/**
* Update a location relationship value.
*
* @param int $location_id Location ID from location table.
* @param int $location_post Post ID from posts table.
*
* @since 3.3.0
*/
function mc_update_location_post_relationship( $location_id, $location_post ) {
global $wpdb;
$location_relationship = $wpdb->get_var( $wpdb->prepare( 'SELECT relationship_id FROM ' . my_calendar_location_relationships_table() . ' WHERE location_id = %d', $location_id ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
$where = array( 'relationship_id' => (int) $location_relationship );
if ( $location_relationship ) {
$update = $wpdb->update(
my_calendar_location_relationships_table(),
array(
'post_id' => $location_post,
),
$where,
array( '%d' ),
'%d'
);
} else {
$update = $wpdb->insert(
my_calendar_location_relationships_table(),
array(
'location_id' => $location_id,
'post_id' => $location_post,
'relationship_id' => $location_relationship,
),
array( '%d', '%d', '%d' )
);
}
return $update;
}
/**
* Insert a new location.
*
* @param array $add Array of location details to add.
*
* @return mixed boolean/int query result.
*/
function mc_insert_location( $add ) {
global $wpdb;
$add = array_map( 'mc_kses_post', $add );
$formats = array( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%f', '%f', '%d', '%s', '%s', '%s' );
$results = $wpdb->insert( my_calendar_locations_table(), $add, $formats );
if ( $results ) {
$insert_id = $wpdb->insert_id;
} else {
$insert_id = false;
}
return $insert_id;
}
/**
* Get count of locations.
*
* @return int
*/
function mc_count_locations() {
global $wpdb;
$count = $wpdb->get_var( 'SELECT COUNT(*) FROM ' . my_calendar_locations_table() ); // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared,WordPress.DB.PreparedSQL.NotPrepared
return $count;
}
/**
* Update a location.
*
* @param array $update Array of location details to modify.
* @param int $where Location ID to update.
*
* @return mixed boolean/int query result.
*/
function mc_modify_location( $update, $where ) {
global $wpdb;
$update = array_map( 'mc_kses_post', $update );
$formats = array( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%f', '%f', '%d', '%s', '%s', '%s' );
$results = $wpdb->update( my_calendar_locations_table(), $update, $where, $formats, '%d' );
return $results;
}
/**
* Delete a single location.
*
* @param int $location Location ID.
* @param string $type Return type.
*
* @return string
*/
function mc_delete_location( $location, $type = 'string' ) {
global $wpdb;
$location = (int) ( ( isset( $_GET['location_id'] ) ) ? $_GET['location_id'] : $location );
$results = $wpdb->query( $wpdb->prepare( 'DELETE FROM ' . my_calendar_locations_table() . ' WHERE location_id=%d', $location ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
/**
* Executed an action when a location is deleted.
*
* @hook mc_delete_location
*
* @param {int|false} $results Result of database deletion. False if error; number of rows affected if successful.
* @param {int} $location Location ID.
*/
do_action( 'mc_delete_location', $results, $location );
if ( $results ) {
$value = true;
$return = mc_show_notice( __( 'Location deleted successfully', 'my-calendar' ), false );
$default_location = mc_get_option( 'default_location', false );
if ( (int) $default_location === $location ) {
mc_update_option( 'default_location', '' );
}
} else {
$value = false;
$return = mc_show_error( __( 'Location could not be deleted', 'my-calendar' ), false );
}
return ( 'string' === $type ) ? $return : $value;
}
/**
* Handle results of form submit & display form.
*/
function my_calendar_add_locations() {
global $wpdb;
?>
<div class="wrap my-calendar-admin">
<?php
my_calendar_check_db();
// We do some checking to see what we're doing.
mc_mass_delete_locations();
if ( ! empty( $_POST ) && ( ! isset( $_POST['mc_locations'] ) && ! isset( $_POST['mass_delete'] ) ) ) {
$nonce = $_REQUEST['_wpnonce'];
if ( ! wp_verify_nonce( $nonce, 'my-calendar-nonce' ) ) {
wp_die( 'My Calendar: Security check failed' );
}
}
if ( isset( $_POST['mode'] ) && 'add' === $_POST['mode'] ) {
$add = array(
'location_label' => $_POST['location_label'],
'location_street' => $_POST['location_street'],
'location_street2' => $_POST['location_street2'],
'location_city' => $_POST['location_city'],
'location_state' => $_POST['location_state'],
'location_postcode' => $_POST['location_postcode'],
'location_region' => $_POST['location_region'],
'location_country' => $_POST['location_country'],
'location_url' => $_POST['location_url'],
'location_longitude' => $_POST['location_longitude'],
'location_latitude' => $_POST['location_latitude'],
'location_zoom' => $_POST['location_zoom'],
'location_phone' => $_POST['location_phone'],
'location_phone2' => $_POST['location_phone2'],
'location_access' => isset( $_POST['location_access'] ) ? serialize( $_POST['location_access'] ) : '',
);
$results = mc_insert_location( $add );
if ( isset( $_POST['mc_default_location'] ) ) {
mc_update_option( 'default_location', (int) $results );
}
/**
* Executed an action when a location is saved.
*
* @hook mc_save_location
*
* @param {int|false} $results Result of database insertion. Row ID or false.
* @param {array} $add Array of location parameters to add.
* @param {array} $post POST array.
*/
do_action( 'mc_save_location', $results, $add, $_POST );
if ( $results ) {
mc_show_notice( __( 'Location added successfully', 'my-calendar' ) );
} else {
mc_show_error( __( 'Location could not be added to database', 'my-calendar' ) );
}
} elseif ( isset( $_GET['location_id'] ) && 'delete' === $_GET['mode'] ) {
$loc = absint( $_GET['location_id'] );
echo mc_delete_location( $loc );
} elseif ( isset( $_GET['mode'] ) && isset( $_GET['location_id'] ) && 'edit' === $_GET['mode'] && ! isset( $_POST['mode'] ) ) {
$cur_loc = (int) $_GET['location_id'];
mc_show_location_form( 'edit', $cur_loc );
} elseif ( isset( $_POST['location_id'] ) && isset( $_POST['location_label'] ) && 'edit' === $_POST['mode'] ) {
$update = array(
'location_label' => $_POST['location_label'],
'location_street' => $_POST['location_street'],
'location_street2' => $_POST['location_street2'],
'location_city' => $_POST['location_city'],
'location_state' => $_POST['location_state'],
'location_postcode' => $_POST['location_postcode'],
'location_region' => $_POST['location_region'],
'location_country' => $_POST['location_country'],
'location_url' => $_POST['location_url'],
'location_longitude' => $_POST['location_longitude'],
'location_latitude' => $_POST['location_latitude'],
'location_zoom' => $_POST['location_zoom'],
'location_phone' => $_POST['location_phone'],
'location_phone2' => $_POST['location_phone2'],
'location_access' => isset( $_POST['location_access'] ) ? serialize( $_POST['location_access'] ) : '',
);
$where = array( 'location_id' => (int) $_POST['location_id'] );
if ( isset( $_POST['mc_default_location'] ) ) {
mc_update_option( 'default_location', (int) $_POST['location_id'] );
}
$default_location = mc_get_option( 'default_location' );
if ( (int) $_POST['location_id'] === (int) $default_location && ! isset( $_POST['mc_default_location'] ) ) {
mc_update_option( 'default_location', '' );
}
$results = mc_modify_location( $update, $where );
/**
* Executed an action when a location is modified.
*
* @hook mc_modify_location
*
* @param {array} $where Array [location_id => $id].
* @param {array} $update Array of location parameters to update.
* @param {array} $post POST array.
*/
do_action( 'mc_modify_location', $where, $update, $_POST );
if ( false === $results ) {
mc_show_error( __( 'Location could not be edited.', 'my-calendar' ) );
} elseif ( 0 === $results ) {
mc_show_error( __( 'Location was not changed.', 'my-calendar' ) );
} else {
mc_show_notice( __( 'Location edited successfully', 'my-calendar' ) );
}
$cur_loc = (int) $_POST['location_id'];
mc_show_location_form( 'edit', $cur_loc );
}
if ( isset( $_GET['mode'] ) && 'edit' !== $_GET['mode'] || isset( $_POST['mode'] ) && 'edit' !== $_POST['mode'] || ! isset( $_GET['mode'] ) && ! isset( $_POST['mode'] ) ) {
mc_show_location_form( 'add' );
}
}
/**
* Create location editing form.
*
* @param string $view type of view add/edit.
* @param int|false $loc_id Location ID or false for new locations.
*/
function mc_show_location_form( $view = 'add', $loc_id = false ) {
$cur_loc = false;
if ( $loc_id ) {
$update_location = false;
if ( isset( $_POST['update_gps'] ) ) {
$update_location = 'force';
}
$cur_loc = mc_get_location( $loc_id, $update_location );
}
$has_data = ( is_object( $cur_loc ) ) ? true : false;
if ( 'add' === $view ) {
?>
<h1><?php esc_html_e( 'Add New Location', 'my-calendar' ); ?></h1>
<?php
} else {
?>
<h1 class="wp-heading-inline"><?php esc_html_e( 'Edit Location', 'my-calendar' ); ?></h1>
<a href="<?php echo admin_url( 'admin.php?page=my-calendar-locations' ); ?>" class="page-title-action"><?php esc_html_e( 'Add New', 'my-calendar' ); ?></a>
<hr class="wp-header-end">
<?php
}
?>
<div class="postbox-container jcd-wide">
<div class="metabox-holder">
<div class="ui-sortable meta-box-sortables">
<div class="postbox">
<h2><?php esc_html_e( 'Location Editor', 'my-calendar' ); ?></h2>
<div class="inside location_form">
<?php
$params = array();
if ( isset( $_GET['location_id'] ) ) {
$params = array(
'mode' => sanitize_text_field( $_GET['mode'] ),
'location_id' => absint( $_GET['location_id'] ),
);
}
?>
<form id="my-calendar" method="post" action="<?php echo esc_url( add_query_arg( $params, admin_url( 'admin.php?page=my-calendar-locations' ) ) ); ?>">
<div class="mc-controls">
<ul>
<?php
if ( 'edit' === $view ) {
$delete_url = add_query_arg( 'location_id', $loc_id, admin_url( 'admin.php?page=my-calendar-location-manager&mode=delete' ) );
$view_url = get_the_permalink( mc_get_location_post( $loc_id, false ) );
?>
<li><span class="dashicons dashicons-no" aria-hidden="true"></span><a class="delete" href="<?php echo esc_url( $delete_url ); ?>"><?php esc_html_e( 'Delete', 'my-calendar' ); ?></a></li>
<?php
if ( $view_url && esc_url( $view_url ) ) {
?>
<li><span class="dashicons dashicons-laptop" aria-hidden="true"></span><a class="view" href="<?php echo esc_url( $view_url ); ?>"><?php esc_html_e( 'View', 'my-calendar' ); ?></a></li>
<?php
}
}
?>
<li><input type="submit" name="save" class="button-primary" value="<?php echo esc_attr( ( 'edit' === $view ) ? __( 'Save Changes', 'my-calendar' ) : __( 'Add Location', 'my-calendar' ) ); ?> "/></li>
</ul>
</div>
<div><input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce( 'my-calendar-nonce' ); ?>"/></div>
<?php
if ( 'add' === $view ) {
?>
<div>
<input type="hidden" name="mode" value="add" />
<input type="hidden" name="location_id" value="" />
</div>
<?php
} else {
?>
<div>
<input type="hidden" name="mode" value="edit"/>
<input type="hidden" name="location_id" value="<?php echo $cur_loc->location_id; ?>"/>
</div>
<?php
}
echo mc_locations_fields( $has_data, $cur_loc, 'location' );
?>
<div class="mc-controls footer">
<ul>
<?php
if ( 'edit' === $view ) {
$delete_url = add_query_arg( 'location_id', $loc_id, admin_url( 'admin.php?page=my-calendar-location-manager&mode=delete' ) );
$view_url = get_the_permalink( mc_get_location_post( $loc_id, false ) );
?>
<li><span class="dashicons dashicons-no" aria-hidden="true"></span><a class="delete" href="<?php echo esc_url( $delete_url ); ?>"><?php esc_html_e( 'Delete', 'my-calendar' ); ?></a></li>
<?php
if ( $view_url && esc_url( $view_url ) ) {
?>
<li><span class="dashicons dashicons-laptop" aria-hidden="true"></span><a class="view" href="<?php echo esc_url( $view_url ); ?>"><?php esc_html_e( 'View', 'my-calendar' ); ?></a></li>
<?php
}
}
?>
<li><input type="submit" name="save" class="button-primary" value="<?php echo esc_attr( ( 'edit' === $view ) ? __( 'Save Changes', 'my-calendar' ) : __( 'Add Location', 'my-calendar' ) ); ?> "/></li>
</ul>
</div>
</form>
</div>
</div>
</div>
<?php
if ( 'edit' === $view ) {
?>
<p>
<a href="<?php echo admin_url( 'admin.php?page=my-calendar-locations' ); ?>"><?php esc_html_e( 'Add a New Location', 'my-calendar' ); ?></a>
</p>
<?php
}
?>
</div>
</div>
<?php
mc_show_sidebar( '' );
?>
</div>
<?php
}
/**
* Get details about one location.
*
* @param int $location_id Location ID.
* @param bool|string $update_location Whether to update location on fetch. 'Force' to force update.
*
* @return object|false location if found
*/
function mc_get_location( $location_id, $update_location = true ) {
$mcdb = mc_is_remote_db();
$location = $mcdb->get_row( $mcdb->prepare( 'SELECT * FROM ' . my_calendar_locations_table() . ' WHERE location_id = %d', $location_id ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
if ( is_object( $location ) ) {
$location->location_post = mc_get_location_post( $location_id, false );
$prevent_geolocation = ( '1' === get_post_meta( $location->location_post, '_mc_geolocate_error', true ) && 'force' !== $update_location ) ? true : false;
if ( $prevent_geolocation ) {
return $location;
}
if ( $update_location ) {
if ( mc_get_option( 'gmap_api_key' ) ) {
if ( 'force' === $update_location ) {
$latitude = false;
$longitude = false;
} else {
$latitude = ( '0.000000' === (string) $location->location_latitude ) ? false : true;
$longitude = ( '0.000000' === (string) $location->location_longitude ) ? false : true;
}
if ( ! $latitude || ! $longitude ) {
$loc = mc_get_location_coordinates( $location_id );
$lat = isset( $loc['latitude'] ) ? $loc['latitude'] : '';
$lng = isset( $loc['longitude'] ) ? $loc['longitude'] : '';
if ( $lat && $lng ) {
mc_update_location( 'location_longitude', $lng, $location_id );
mc_update_location( 'location_latitude', $lat, $location_id );
$location->location_longitude = $lng;
$location->location_latitude = $lat;
} else {
update_post_meta( $location->location_post, '_mc_geolocate_error', '1' );
}
}
}
}
}
return $location;
}
/**
* Check whether this location field has pre-entered controls on input
*
* @param string $this_field field name.
*
* @return boolean true if location field is controlled
*/
function mc_controlled_field( $this_field ) {
$this_field = trim( $this_field );
$controls = mc_get_option( 'location_controls' );
if ( ! is_array( $controls ) || empty( $controls ) ) {
return false;
}
$controlled = array_keys( $controls );
if ( in_array( 'event_' . $this_field, $controlled, true ) && ! empty( $controls[ 'event_' . $this_field ] ) ) {
return true;
} else {
return false;
}
}
/**
* Geolocate latitude and longitude of location.
*
* @param int|false $location_id Location ID.
* @param array $address Array of address parameters.
*
* @return array
*/
function mc_get_location_coordinates( $location_id = false, $address = array() ) {
require_once( 'includes/class-geolocation.php' );
$street = '';
$street2 = '';
$city = '';
$zip = '';
$country = '';
new Geolocation;
if ( $location_id ) {
$location = mc_get_location( $location_id, false );
$street = $location->location_street;
$street2 = $location->location_street2;
$city = $location->location_city;
$zip = $location->location_postcode;
$country = $location->location_country;
} elseif ( ! empty( $address ) ) {
$street = ( isset( $address['street'] ) ) ? $address['street'] : '';
$street2 = ( isset( $address['street2'] ) ) ? $address['street2'] : '';
$city = ( isset( $address['city'] ) ) ? $address['city'] : '';
$zip = ( isset( $address['zip'] ) ) ? $address['zip'] : '';
$country = ( isset( $address['country'] ) ) ? $address['country'] : '';
}
$coordinates = Geolocation::get_coordinates( $street, $street2, $city, $zip, $country );
return $coordinates;
}
/**
* Return select element with the controlled values for a location field
*
* @param string $fieldname Name of field.
* @param string $selected currently selected value.
* @param string $context current context: entering new location or new event.
*
* @return string HTML select element with values
*/
function mc_location_controller( $fieldname, $selected, $context = 'location' ) {
$field = ( 'location' === $context ) ? 'location_' . $fieldname : 'event_' . $fieldname;
$selected = trim( $selected );
$options = mc_get_option( 'location_controls' );
$regions = $options[ 'event_' . $fieldname ];
$form = "<select name='$field' id='e_$fieldname'>";
$form .= "<option value=''>" . __( 'Select', 'my-calendar' ) . '</option>';
if ( is_admin() && '' !== $selected ) {
$form .= "<option value='" . esc_attr( $selected ) . "'>" . esc_html( $selected ) . ' :' . __( '(Not a controlled value)', 'my-calendar' ) . '</option>';
}
foreach ( $regions as $key => $value ) {
$key = trim( $key );
$value = trim( $value );
$aselected = ( $selected === $key ) ? ' selected="selected"' : '';
$form .= "<option value='" . esc_attr( $key ) . "'$aselected>" . esc_html( $value ) . "</option>\n";
}
$form .= '</select>';
return $form;
}
/**
* Produce the form to submit location data
*
* @param boolean $has_data Whether currently have data.
* @param object $data event or location data.
* @param string $context whether currently in an event or a location context.
* @param int|false $group_id Group ID if in group editing.
*
* @return string HTML form fields
*/
function mc_locations_fields( $has_data, $data, $context = 'location', $group_id = false ) {
$return = '<div class="mc-locations" id="location-fields">';
if ( current_user_can( 'mc_edit_locations' ) && 'event' === $context ) {
$checked = ' checked="checked"';
// Default unchecked if event has a location or is being copied.
if ( ( $has_data && ! empty( $data->event_location ) ) || isset( $_GET['mode'] ) && 'copy' === $_GET['mode'] ) {
$checked = '';
}
$return .= '<p class="checkboxes"><input type="checkbox" value="on" name="mc_copy_location" id="mc_copy_location"' . $checked . ' /> <label for="mc_copy_location">' . __( 'Copy new location into the locations table', 'my-calendar' ) . '</label></p>';
}
if ( current_user_can( 'mc_edit_settings' ) && isset( $_GET['page'] ) && 'my-calendar-locations' === $_GET['page'] ) {
$checked = ( isset( $_GET['location_id'] ) && (int) mc_get_option( 'default_location' ) === (int) $_GET['location_id'] ) ? 'checked="checked"' : '';
$return .= '<p class="checkbox">';
$return .= '<input type="checkbox" name="mc_default_location" id="mc_default_location"' . $checked . ' /> <label for="mc_default_location">' . __( 'Default Location', 'my-calendar' ) . '</label>';
$return .= '</p>';
}
$compare = ( $group_id ) ? mc_compare_group_members( $group_id, 'event_label', false ) : '';
$return .= '
<p>
<label for="e_label">' . __( 'Name of Location (required)', 'my-calendar' ) . $compare . '</label>';
$cur_label = ( is_object( $data ) ) ? ( stripslashes( $data->{$context . '_label'} ) ) : '';
if ( mc_controlled_field( 'label' ) ) {
$return .= mc_location_controller( 'label', $cur_label, $context );
} else {
$return .= '<input type="text" id="e_label" name="' . $context . '_label" value="' . esc_attr( $cur_label ) . '" />';
}
$compare1 = ( $group_id ) ? mc_compare_group_members( $group_id, 'event_street', false ) : '';
$compare2 = ( $group_id ) ? mc_compare_group_members( $group_id, 'event_street2', false ) : '';
$compare = ( $group_id ) ? mc_compare_group_members( $group_id, 'event_city', false ) : '';
$street_address = ( $has_data ) ? stripslashes( $data->{$context . '_street'} ) : '';
$street_address2 = ( $has_data ) ? stripslashes( $data->{$context . '_street2'} ) : '';
$return .= '
</p>
<div class="locations-container columns">
<div class="location-primary">
<fieldset>
<legend>' . __( 'Location Address', 'my-calendar' ) . '</legend>
<p>
<label for="e_street">' . __( 'Street Address', 'my-calendar' ) . $compare1 . '</label> <input type="text" id="e_street" name="' . $context . '_street" value="' . esc_attr( $street_address ) . '" />
</p>
<p>
<label for="e_street2">' . __( 'Street Address (2)', 'my-calendar' ) . $compare2 . '</label> <input type="text" id="e_street2" name="' . $context . '_street2" value="' . esc_attr( $street_address2 ) . '" />
</p>
<p>
<label for="e_city">' . __( 'City', 'my-calendar' ) . $compare . '</label> ';
$cur_city = ( is_object( $data ) ) ? ( stripslashes( $data->{$context . '_city'} ) ) : '';
if ( mc_controlled_field( 'city' ) ) {
$return .= mc_location_controller( 'city', $cur_city, $context );
} else {
$return .= '<input type="text" id="e_city" name="' . $context . '_city" value="' . esc_attr( $cur_city ) . '" />';
}
$return .= '</p><p>';
$compare = ( $group_id ) ? mc_compare_group_members( $group_id, 'event_state', false ) : '';
$return .= '<label for="e_state">' . __( 'State/Province', 'my-calendar' ) . $compare . '</label> ';
$cur_state = ( is_object( $data ) ) ? ( stripslashes( $data->{$context . '_state'} ) ) : '';
if ( mc_controlled_field( 'state' ) ) {
$return .= mc_location_controller( 'state', $cur_state, $context );
} else {
$return .= '<input type="text" id="e_state" name="' . $context . '_state" size="10" value="' . esc_attr( $cur_state ) . '" />';
}
$compare = ( $group_id ) ? mc_compare_group_members( $group_id, 'event_postcode', false ) : '';
$return .= '</p><p><label for="e_postcode">' . __( 'Postal Code', 'my-calendar' ) . $compare . '</label> ';
$cur_postcode = ( is_object( $data ) ) ? ( stripslashes( $data->{$context . '_postcode'} ) ) : '';
if ( mc_controlled_field( 'postcode' ) ) {
$return .= mc_location_controller( 'postcode', $cur_postcode, $context );
} else {
$return .= '<input type="text" id="e_postcode" name="' . $context . '_postcode" value="' . esc_attr( $cur_postcode ) . '" />';
}
$compare = ( $group_id ) ? mc_compare_group_members( $group_id, 'event_region', false ) : '';
$return .= '</p><p>';
$return .= '<label for="e_region">' . __( 'Region', 'my-calendar' ) . $compare . '</label> ';
$cur_region = ( is_object( $data ) ) ? ( stripslashes( $data->{$context . '_region'} ) ) : '';
if ( mc_controlled_field( 'region' ) ) {
$return .= mc_location_controller( 'region', $cur_region, $context );
} else {
$return .= '<input type="text" id="e_region" name="' . $context . '_region" value="' . esc_attr( $cur_region ) . '" />';
}
$compare = ( $group_id ) ? mc_compare_group_members( $group_id, 'event_country', false ) : '';
$return .= '</p><p><label for="e_country">' . __( 'Country', 'my-calendar' ) . $compare . '</label> ';
$cur_country = ( $has_data ) ? ( stripslashes( $data->{$context . '_country'} ) ) : '';
if ( mc_controlled_field( 'country' ) ) {
$return .= mc_location_controller( 'country', $cur_country, $context );
} else {
$return .= '<input type="text" id="e_country" name="' . $context . '_country" size="10" value="' . esc_attr( $cur_country ) . '" />';
}
$compare_zoom = ( $group_id ) ? mc_compare_group_members( $group_id, 'event_zoom', false ) : '';
$compare_phone = ( $group_id ) ? mc_compare_group_members( $group_id, 'event_phone', false ) : '';
$compare_phone2 = ( $group_id ) ? mc_compare_group_members( $group_id, 'event_phone2', false ) : '';
$compare_url = ( $group_id ) ? mc_compare_group_members( $group_id, 'event_url', false ) : '';
$compare_lat = ( $group_id ) ? mc_compare_group_members( $group_id, 'event_latitude', false ) : '';
$compare_lon = ( $group_id ) ? mc_compare_group_members( $group_id, 'event_longitude', false ) : '';
$zoom = ( $has_data ) ? $data->{$context . '_zoom'} : '16';
$event_phone = ( $has_data ) ? stripslashes( $data->{$context . '_phone'} ) : '';
$event_phone2 = ( $has_data ) ? stripslashes( $data->{$context . '_phone2'} ) : '';
$event_url = ( $has_data ) ? stripslashes( $data->{$context . '_url'} ) : '';
$event_lat = ( $has_data ) ? stripslashes( $data->{$context . '_latitude'} ) : '';
$event_lon = ( $has_data ) ? stripslashes( $data->{$context . '_longitude'} ) : '';
$update_gps = ( $has_data && mc_get_option( 'gmap_api_key', '' ) && 'location' === $context ) ? '<p class="checkboxes"><input type="checkbox" value="1" id="update_gps" name="update_gps" /> <label for="update_gps">' . __( 'Update GPS Coordinates', 'my-calendar' ) . '</label></p>' : '';
$return .= '</p>
<p>
<label for="e_zoom">' . __( 'Initial Zoom', 'my-calendar' ) . $compare_zoom . '</label>
<select name="' . $context . '_zoom" id="e_zoom">
<option value="16"' . selected( $zoom, '16', false ) . '>' . __( 'Neighborhood', 'my-calendar' ) . '</option>
<option value="14"' . selected( $zoom, '14', false ) . '>' . __( 'Small City', 'my-calendar' ) . '</option>
<option value="12"' . selected( $zoom, '12', false ) . '>' . __( 'Large City', 'my-calendar' ) . '</option>
<option value="10"' . selected( $zoom, '10', false ) . '>' . __( 'Greater Metro Area', 'my-calendar' ) . '</option>
<option value="8"' . selected( $zoom, '8', false ) . '>' . __( 'State', 'my-calendar' ) . '</option>
<option value="6"' . selected( $zoom, '6', false ) . '>' . __( 'Region', 'my-calendar' ) . '</option>
</select>
</p>
</fieldset>
<fieldset>
<legend>' . __( 'GPS Coordinates (optional)', 'my-calendar' ) . '</legend>
<p>
' . __( 'Coordinates are used for placing the pin on your map when available.', 'my-calendar' ) . '
</p>
<div class="columns-flex">
<p>
<label for="e_latitude">' . __( 'Latitude', 'my-calendar' ) . $compare_lat . '</label> <input type="text" id="e_latitude" name="' . $context . '_latitude" size="10" value="' . esc_attr( $event_lat ) . '" />
</p>
<p>
<label for="e_longitude">' . __( 'Longitude', 'my-calendar' ) . $compare_lon . '</label> <input type="text" id="e_longitude" name="' . $context . '_longitude" size="10" value="' . esc_attr( $event_lon ) . '" />
</p>' . $update_gps . '
</div>
</fieldset>';
/**
* Append content in the primary column of location fields.
*
* @hook mc_location_container_primary
*
* @param {string} HTML content. Default empty string.
* @param {object} $data Current display object.
* @param {string} $context Location or event. Tells us the structure of the $data object.
*
* @return {string}
*/
$return .= apply_filters( 'mc_location_container_primary', '', $data, $context );
$return .= '
</div>
<div class="location-secondary">
<fieldset>
<legend>' . __( 'Location Contact Information', 'my-calendar' ) . '</legend>
<p>
<label for="e_phone">' . __( 'Phone', 'my-calendar' ) . $compare_phone . '</label> <input type="text" id="e_phone" name="' . $context . '_phone" value="' . esc_attr( $event_phone ) . '" />
</p>
<p>
<label for="e_phone2">' . __( 'Secondary Phone', 'my-calendar' ) . $compare_phone2 . '</label> <input type="text" id="e_phone2" name="' . $context . '_phone2" value="' . esc_attr( $event_phone2 ) . '" />
</p>
<p>
<label for="e_url">' . __( 'Location URL', 'my-calendar' ) . $compare_url . '</label> <input type="text" id="e_url" name="' . $context . '_url" value="' . esc_attr( $event_url ) . '" />
</p>
</fieldset>
<fieldset>
<legend>' . __( 'Location Accessibility', 'my-calendar' ) . '</legend>
<ul class="accessibility-features checkboxes">';
/**
* Filter venue accessibility array.
*
* @hook mc_venue_accessibility
*
* @param {array} $access Access parameters.
* @param {object} $data Current data object.
*
* @return {array}
*/
$access = apply_filters( 'mc_venue_accessibility', mc_location_access(), $data );
$access_list = '';
if ( $has_data ) {
if ( 'location' === $context ) {
$location_access = unserialize( $data->{$context . '_access'} );
} else {
if ( property_exists( $data, 'event_location' ) ) {
$event_location = $data->event_location;
} else {
$event_location = false;
}
$location_access = unserialize( mc_location_data( 'location_access', $event_location ) );
}
} else {
$location_access = array();
}
foreach ( $access as $k => $a ) {
$id = "loc_access_$k";
$label = $a;
$checked = '';
if ( is_array( $location_access ) ) {
$checked = ( in_array( $a, $location_access, true ) || in_array( $k, $location_access, true ) ) ? " checked='checked'" : '';
}
$item = sprintf( '<li><input type="checkbox" id="%1$s" name="' . $context . '_access[]" value="%4$s" class="checkbox" %2$s /> <label for="%1$s">%3$s</label></li>', esc_attr( $id ), $checked, esc_html( $label ), esc_attr( $a ) );
$access_list .= $item;
}
$return .= $access_list;
$return .= '</ul>
</fieldset>';
$fields = mc_display_location_fields( mc_location_fields(), $data, $context );
$return .= ( '' !== $fields ) ? '<div class="mc-custom-fields mc-locations"><fieldset><legend>' . __( 'Custom Fields', 'my-calendar' ) . '</legend>' . $fields . '</fieldset></div>' : '';
/**
* Append content in the secondary column of location fields.
*
* @hook mc_location_container_secondary
*
* @param {string} HTML content. Default empty string.
* @param {object} $data Current display object.
* @param {string} $context Location or event. Tells us the structure of the $data object.
*
* @return {string}
*/
$return .= apply_filters( 'mc_location_container_secondary', '', $data, $context );
$return .= '</div>
</div>
</div>';
$api_key = mc_get_option( 'gmap_api_key' );
$location = ( $has_data && 'event' === $context ) ? $data->event_location : false;
if ( $api_key && ! ( 'event' === $context && false === (bool) $location ) ) {
$return .= '<h3>' . __( 'Location Map', 'my-calendar' ) . '</h3>';
$map = mc_generate_map( $data, $context );
$return .= ( '' === $map ) ? __( 'Not enough information to generate a map', 'my-calendar' ) : $map;
} else {
if ( ! $api_key ) {
// Translators: URL to settings page to add key.
$return .= sprintf( __( 'Add a <a href="%s">Google Maps API Key</a> to generate a location map.', 'my-calendar' ), admin_url( 'admin.php?page=my-calendar-config#mc-output' ) );
}
}
return $return;
}
/**
* Return a set of location fields.
*
* @return array
*/
function mc_location_fields() {
/**
* Return custom fields for use in My Calendar locations. Fields should format like:
*
* ```$fields['location_type'] = array(
* 'title' => 'Location Type',
* 'sanitize_callback' => 'sanitize_text_field',
* 'display_callback' => 'esc_html',
* 'input_type' => 'select',
* 'input_values' => array( 'Virtual', 'Private Home', 'Concert Hall', 'Outdoor Venue' ),
* );```
*
* @hook mc_location_fields
*
* @param {array} Array of custom fields.
*
* @return {array}
*/
$fields = apply_filters( 'mc_location_fields', array() );
return $fields;
}
/**
* Get custom data for a location.
*
* @param int|false $location_id Location ID.
* @param int|false $location_post Location Post ID.
* @param string|false $field Custom field name.
*
* @return mixed
*/
function mc_location_custom_data( $location_id = false, $location_post = false, $field = false ) {
if ( ! $field ) {
return;
}
$fields = mc_location_fields();
if ( $field && ! in_array( $field, array_keys( $fields ), true ) ) {
return '';
}
$location_id = ( isset( $_GET['location_id'] ) ) ? (int) $_GET['location_id'] : $location_id;
$value = '';
// Quick exit when location post is known.
if ( $location_post ) {
return get_post_meta( $location_post, $field, true );
}
if ( ! $location_id ) {
$location_id = ( isset( $_POST['location_id'] ) ) ? (int) $_POST['location_id'] : false;
}
if ( $location_id ) {
$post_id = mc_get_location_post( $location_id, false );
$value = get_post_meta( $post_id, $field, true );
}
return $value;
}
/**
* Add custom fields to event data output.
*
* @param array $e Event tag data.
* @param object $event Event object.
*
* @return array
*/
function mc_template_location_fields( $e, $event ) {
$fields = mc_location_fields();
foreach ( $fields as $name => $field ) {
$location_post = false;
if ( is_object( $event ) && property_exists( $event, 'location' ) ) {
if ( is_object( $event->location ) && property_exists( $event->location, 'location_post' ) ) {
$location_post = $event->location->location_post;
} else {
// If location data has no backing post, it cannot have custom fields.
return $e;
}
}
$value = mc_location_custom_data( $event->event_location, $location_post, $name );
if ( ! isset( $field['display_callback'] ) || ( isset( $field['display_callback'] ) && ! function_exists( $field['display_callback'] ) ) ) {
// if no display callback is provided.
$display = stripslashes( $value );
} else {
$display = call_user_func( $field['display_callback'], $value, $field );
}
$key = 'location_' . $name;
$e[ $key ] = $display;
}
return $e;
}
add_filter( 'mc_filter_shortcodes', 'mc_template_location_fields', 10, 2 );
/**
* Expand custom fields from array to field output
*
* @param array $fields Array of field data.
* @param object $data Location data.
* @param string $context Location or event.
*
* @return string
*/
function mc_display_location_fields( $fields, $data, $context ) {
if ( empty( $fields ) ) {
return '';
}
$output = '';
$return = '';
$location_id = false;
if ( is_object( $data ) && 'event' === $context ) {
$location_id = $data->event_location;
}
if ( is_object( $data ) && 'location' === $context ) {
$location_id = $data->location_id;
}
if ( ! $location_id ) {
return '';
}
/**
* Filter available custom fields & set display order.
*
* @hook mc_order_location_fields
*
* @param {array} $fields Array of custom fields data.
* @param {string} $context Whether we're currently editing a location or an event.
*
* @return {array}
*/
$custom_fields = apply_filters( 'mc_order_location_fields', $fields, $context );
foreach ( $custom_fields as $name => $field ) {
$user_value = mc_location_custom_data( $location_id, false, $name );
$required = isset( $field['required'] ) ? ' required' : '';
$req_label = isset( $field['required'] ) ? ' <span class="required">' . __( 'Required', 'my-calendar' ) . '</span>' : '';
switch ( $field['input_type'] ) {
case 'text':
case 'number':
case 'email':
case 'url':
case 'date':
case 'tel':
$output = "<input type='" . $field['input_type'] . "' name='$name' id='$name' value='$user_value'$required />";
break;
case 'hidden':
$output = "<input type='hidden' name='$name' value='$user_value' />";
break;
case 'textarea':
$output = "<textarea rows='6' cols='60' name='$name' id='$name'$required>$user_value</textarea>";
break;
case 'select':
if ( isset( $field['input_values'] ) ) {
$output = "<select name='$name' id='$name'$required>";
foreach ( $field['input_values'] as $value ) {
$value = stripslashes( $value );
if ( $value === $user_value ) {
$selected = " selected='selected'";
} else {
$selected = '';
}
$output .= "<option value='" . esc_attr( stripslashes( $value ) ) . "'$selected>" . esc_html( stripslashes( $value ) ) . "</option>\n";
}
$output .= '</select>';
}
break;
case 'checkbox':
case 'radio':
if ( isset( $field['input_values'] ) ) {
$value = $field['input_values'];
if ( (string) $value === (string) $user_value ) {
$checked = ' checked="checked"';
} else {
$checked = '';
}
$output = "<input type='" . $field['input_type'] . "' name='$name' id='$name' value='" . esc_attr( stripslashes( $value ) ) . "'$checked $required />";
}
break;
default:
$output = "<input type='text' name='$name' id='$name' value='$user_value' $required />";
}
if ( 'hidden' !== $field['input_type'] ) {
$return .= ( 'checkbox' === $field['input_type'] || 'radio' === $field['input_type'] ) ? '<p class="' . $field['input_type'] . '">' . $output . " <label for='$name'>" . $field['title'] . $req_label . '</label></p>' : "<p><label for='$name'>" . $field['title'] . $req_label . '</label> ' . $output . '</p>';
} else {
$return .= $output;
}
}
return $return;
}
/**
* Array of location access features
*
* @return array
*/
function mc_location_access() {
$location_access = array(
'1' => __( 'Accessible Entrance', 'my-calendar' ),
'2' => __( 'Accessible Parking Designated', 'my-calendar' ),
'3' => __( 'Accessible Restrooms', 'my-calendar' ),
'4' => __( 'Accessible Seating', 'my-calendar' ),
'5' => __( 'Accessible Transportation Available', 'my-calendar' ),
'6' => __( 'Wheelchair Accessible', 'my-calendar' ),
'7' => __( 'Courtesy Wheelchairs', 'my-calendar' ),
'8' => __( 'Bariatric Seating Available', 'my-calendar' ),
'9' => __( 'Elevator to all public areas', 'my-calendar' ),
'10' => __( 'Braille Signage', 'my-calendar' ),
'11' => __( 'Fragrance-Free Policy', 'my-calendar' ),
'12' => __( 'Other', 'my-calendar' ),
);
/**
* Filter choices available for location accessibility services.
*
* @hook mc_location_access_choices
*
* @param {array} Array of location choices (numeric keys, string values.)
*
* @return {array}
*/
return apply_filters( 'mc_location_access_choices', $location_access );
}
/**
* Get a specific field with an location ID
*
* @param string $field Specific field to get.
* @param int $id Location ID.
*
* @return string value as string.
*/
function mc_location_data( $field, $id ) {
if ( $id ) {
$mcdb = mc_is_remote_db();
$sql = $mcdb->prepare( "SELECT $field FROM " . my_calendar_locations_table() . ' WHERE location_id = %d', $id );
$result = $mcdb->get_var( $sql );
return (string) $result;
}
return '';
}
/**
* Get options list of locations to choose from
*
* @param object|false $location Selected location object or false if nothing selected.
*
* @return string set of option elements
*/
function mc_location_select( $location = false ) {
// Grab all locations and list them.
$list = '';
$locs = mc_get_locations( 'select-locations' );
foreach ( $locs as $loc ) {
// If label is empty, display street.
if ( '' === (string) $loc->location_label ) {
$label = $loc->location_street;
} else {
$label = $loc->location_label;
}
// If neither label nor street, skip.
if ( '' === (string) $label ) {
continue;
}
$l = '<option value="' . $loc->location_id . '"';
if ( $location ) {
if ( (int) $location === (int) $loc->location_id ) {
$l .= ' selected="selected"';
}
}
$l .= '>' . mc_kses_post( stripslashes( $label ) ) . '</option>';
$list .= $l;
}
return '<option value="">' . __( 'Select', 'my-calendar' ) . '</option>' . $list;
}
/**
* Get list of locations (IDs and labels)
*
* @param string|array $args array of relevant arguments. If string, get all locations and set context.
*
* @return array locations (IDs and labels only)
*/
function mc_get_locations( $args ) {
global $wpdb;
if ( is_array( $args ) ) {
$context = ( isset( $args['context'] ) ) ? $args['context'] : 'general';
$orderby = ( isset( $args['orderby'] ) ) ? $args['orderby'] : 'location_label';
$order = ( isset( $args['order'] ) ) ? $args['order'] : 'ASC';
$where = ( isset( $args['where'] ) ) ? $args['where'] : '1';
$is = ( isset( $args['is'] ) ) ? $args['is'] : '1';
} else {
$context = $args;
$orderby = 'location_label';
$order = 'ASC';
$where = '1';
$is = '1';
}
if ( ! ( 'ASC' === $order || 'DESC' === $order ) ) {
// Prevent invalid order parameters.
$order = 'ASC';
}
$valid_args = $wpdb->get_col( 'DESC ' . my_calendar_locations_table() ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
if ( ! ( in_array( $orderby, $valid_args, true ) ) ) {
// Prevent invalid order columns.
$orderby = 'location_label';
}
$results = $wpdb->get_results( $wpdb->prepare( 'SELECT location_id,location_label,location_street FROM ' . my_calendar_locations_table() . ' WHERE ' . esc_sql( $where ) . ' = %s ORDER BY ' . esc_sql( $orderby ) . ' ' . esc_sql( $order ), $is ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
/**
* Filter returned results when searching locations.
*
* @hook mc_filter_location_results
*
* @param {array} $results Array of IDs or objects.
* @param {array} $args Query arguments.
*
* @return {array}
*/
return apply_filters( 'mc_filter_location_results', $results, $args );
}
/**
* Search location titles.
*
* @param string $query Location query.
*
* @return array locations
*/
function mc_core_search_locations( $query = '' ) {
global $wpdb;
$search = '';
$db_type = mc_get_db_type();
$query = esc_sql( $query );
$length = strlen( $query );
if ( '' !== $query ) {
// Fulltext is supported in InnoDB since MySQL 5.6; minimum required by WP is 5.0 as of WP 5.5.
// 37% of installs still below 5.6 as of 11/30/2020.
// 2.4% of installs below 5.6 as of 7/14/2022.
if ( 'MyISAM' === $db_type && $length > 3 ) {
/**
* Filter the fields used to handle MATCH queries in location searches on MyISAM dbs.
*
* @hook mc_search_fields
*
* @param {string} $fields Table columns in locations table.
*
* @return {string}
*/
$search = ' WHERE MATCH(' . apply_filters( 'mc_search_fields', 'location_label' ) . ") AGAINST ( '$query' IN BOOLEAN MODE ) ";
} else {
$search = " WHERE location_label LIKE '%$query%' ";
}
} else {
$search = '';
}
$locations = $wpdb->get_results( 'SELECT SQL_CALC_FOUND_ROWS location_id, location_label FROM ' . my_calendar_locations_table() . " $search ORDER BY location_label ASC" ); // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared,WordPress.DB.PreparedSQL.NotPrepared
return $locations;
}
/**
* Filter theme content to display My Calendar location data.
*
* @param string $content Post content.
*
* @return string
*/
function mc_display_location_details( $content ) {
if ( is_singular( 'mc-locations' ) && in_the_loop() && is_main_query() ) {
$location = mc_get_location_id( get_the_ID() );
$location = mc_get_location( $location );
if ( ! is_object( $location ) ) {
return $content;
}
$args = array(
'ltype' => 'name',
'lvalue' => $location->location_label,
'type' => 'events',
'after' => 5,
'before' => 0,
'fallback' => __( 'No events currently scheduled at this location.', 'my-calendar' ),
);
/**
* Filter the arguments used to generate upcoming events for a location. Default ['ltype' => 'name', 'lvalue' => {location_label}, 'type' => 'events', 'after' => 5, 'before' => 0, 'fallback' => 'No events currently scheduled at this location.'].
*
* @hook mc_display_location_events
*
* @param {array} $args Array of upcoming events arguments.
* @param {object} $location Location object.
*
* @return {array}
*/
$args = apply_filters( 'mc_display_location_events', $args, $location );
$events = my_calendar_upcoming_events( $args );
$data = array(
'location' => $location,
'events' => $events,
);
$details = mc_load_template( 'location/single', $data );
if ( $details ) {
$content = $details;
} else {
$content = '
<div class="mc-view-location">
<div class="mc-location-content">' . $content . '</div>
<div class="mc-location-gmap">' . mc_generate_map( $location, 'location' ) . '</div>
<div class="mc-location-hcard">' . mc_hcard( $location, 'true', 'true', 'location' ) . '</div>
<div class="mc-location-upcoming"><h2>' . __( 'Upcoming Events', 'my-calendar' ) . '</h2>' . $events . '</div>
</div>';
/**
* Filter the HTML output for single location details.
*
* @hook mc_location_output
*
* @param {string} $content Full HTML output.
* @param {object} $location Calendar location object.
*
* @return {string}
*/
$content = apply_filters( 'mc_location_output', $content, $location );
}
}
return $content;
}
add_filter( 'the_content', 'mc_display_location_details' );