em-location.php
56 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
<?php
/**
* Get a location in a db friendly way, by checking globals, cache and passed variables to avoid extra class instantiations.
* @param mixed $id
* @param mixed $search_by
* @return EM_Location
*/
function em_get_location($id = false, $search_by = 'location_id') {
global $EM_Location;
//check if it's not already global so we don't instantiate again
if( is_object($EM_Location) && get_class($EM_Location) == 'EM_Location' ){
if( is_object($id) && $EM_Location->post_id == $id->ID ){
return apply_filters('em_get_location', $EM_Location);
}elseif( !is_object($id) ){
if( $search_by == 'location_id' && $EM_Location->location_id == $id ){
return apply_filters('em_get_location', $EM_Location);
}elseif( $search_by == 'post_id' && $EM_Location->post_id == $id ){
return apply_filters('em_get_location', $EM_Location);
}
}
}
if( is_object($id) && get_class($id) == 'EM_Location' ){
return apply_filters('em_get_location', $id);
}elseif( !defined('EM_CACHE') || EM_CACHE ){
//check the cache first
$location_id = false;
if( is_numeric($id) ){
if( $search_by == 'location_id' ){
$location_id = $id;
}elseif( $search_by == 'post_id' ){
$location_id = wp_cache_get($id, 'em_locations_ids');
}
}elseif( !empty($id->ID) && !empty($id->post_type) && $id->post_type == EM_POST_TYPE_LOCATION ){
$location_id = wp_cache_get($id->ID, 'em_locations_ids');
}
if( $location_id ){
$location = wp_cache_get($location_id, 'em_locations');
if( is_object($location) && !empty($location->location_id) && $location->location_id){
return apply_filters('em_get_location', $location);
}
}
}
return apply_filters('em_get_location', new EM_Location($id,$search_by));
}
/**
* Object that holds location info and related functions
*
* @property string $language Language of the location, shorthand for location_language
* @property string $translation Whether or not a location is a translation (i.e. it was translated from an original location), shorthand for location_translation
* @property int $parent Location ID of parent location, shorthand for location_parent
* @property int $id The Location ID, case sensitive, shorthand for location_id
* @property string $slug Location slug, shorthand for location_slug
* @property string $name Location name, shorthand for location_name
* @property int $owner ID of author/owner, shorthand for location_owner
* @property int $status ID of post status, shorthand for location_status
*/
class EM_Location extends EM_Object {
//DB Fields
var $location_id = '';
var $post_id = '';
var $blog_id = 0;
var $location_parent;
var $location_slug = '';
var $location_name = '';
var $location_address = '';
var $location_town = '';
var $location_state = '';
var $location_postcode = '';
var $location_region = '';
var $location_country = '';
var $location_latitude = 0;
var $location_longitude = 0;
var $post_content = '';
var $location_owner = '';
var $location_status = 0;
var $location_language;
var $location_translation = 0;
/* anonymous submission information */
var $owner_anonymous;
var $owner_name;
var $owner_email;
//Other Vars
var $fields = array(
'location_id' => array('name'=>'id','type'=>'%d'),
'post_id' => array('name'=>'post_id','type'=>'%d'),
'blog_id' => array('name'=>'blog_id','type'=>'%d'),
'location_parent' => array('type'=>'%d', 'null'=>true),
'location_slug' => array('name'=>'slug','type'=>'%s', 'null'=>true),
'location_name' => array('name'=>'name','type'=>'%s', 'null'=>true),
'location_address' => array('name'=>'address','type'=>'%s','null'=>true),
'location_town' => array('name'=>'town','type'=>'%s','null'=>true),
'location_state' => array('name'=>'state','type'=>'%s','null'=>true),
'location_postcode' => array('name'=>'postcode','type'=>'%s','null'=>true),
'location_region' => array('name'=>'region','type'=>'%s','null'=>true),
'location_country' => array('name'=>'country','type'=>'%s','null'=>true),
'location_latitude' => array('name'=>'latitude','type'=>'%f','null'=>true),
'location_longitude' => array('name'=>'longitude','type'=>'%f','null'=>true),
'post_content' => array('name'=>'description','type'=>'%s', 'null'=>true),
'location_owner' => array('name'=>'owner','type'=>'%d', 'null'=>true),
'location_status' => array('name'=>'status','type'=>'%d', 'null'=>true),
'location_language' => array( 'type'=>'%s', 'null'=>true ),
'location_translation' => array( 'type'=>'%d' ),
);
/**
* Associative array mapping shorter to full property names in this class, used in EM_Object magic access methods, allowing for interchangeable use when dealing with different object types such as locations and events.
* @var array
*/
protected $shortnames = array(
// common EM CPT object variables
'language' => 'location_language',
'translation' => 'location_translation',
'parent' => 'location_parent',
'id' => 'location_id',
'slug' => 'location_slug',
'name' => 'location_name',
'status' => 'location_status',
'owner' => 'location_owner',
);
var $post_fields = array('post_id','location_slug','location_status', 'location_name','post_content','location_owner');
var $location_attributes = array();
var $image_url = '';
var $required_fields = array();
var $feedback_message = "";
var $mime_types = array(1 => 'gif', 2 => 'jpg', 3 => 'png');
var $errors = array();
/**
* previous status of location
* @access protected
* @var mixed
*/
var $previous_status = false;
/* Post Variables - copied out of post object for easy IDE reference */
var $ID;
var $post_author;
var $post_date;
var $post_date_gmt;
var $post_title;
var $post_excerpt = '';
var $post_status;
var $comment_status;
var $ping_status;
var $post_password;
var $post_name;
var $to_ping;
var $pinged;
var $post_modified;
var $post_modified_gmt;
var $post_content_filtered;
var $post_parent;
var $guid;
var $menu_order;
var $post_type;
var $post_mime_type;
var $comment_count;
var $ancestors;
var $filter;
/**
* Gets data from POST (default), supplied array, or from the database if an ID is supplied
* @param WP_Post|int|false $id
* @param $search_by - Can be post_id or a number for a blog id if in ms mode with global tables, default is location_id
*/
function __construct($id = false, $search_by = 'location_id' ) {
global $wpdb;
//Initialize
$this->required_fields = array("location_address" => __('The location address', 'events-manager'), "location_town" => __('The location town', 'events-manager'), "location_country" => __('The country', 'events-manager'));
//Get the post_id/location_id
$is_post = !empty($id->ID) && $id->post_type == EM_POST_TYPE_LOCATION;
if( $is_post ){
$id->ID = absint($id->ID);
}else{
$id = absint($id);
}
if( $is_post || absint($id) > 0 ){ //only load info if $id is a number
$location_post = false;
if($search_by == 'location_id' && !$is_post){
//search by location_id, get post_id and blog_id (if in ms mode) and load the post
$results = $wpdb->get_row($wpdb->prepare("SELECT post_id, blog_id FROM ".EM_LOCATIONS_TABLE." WHERE location_id=%d",$id), ARRAY_A);
if( !empty($results['post_id']) ){
$this->post_id = $results['post_id'];
if( is_multisite() ){
if( empty($results['blog_id']) || (EM_MS_GLOBAL && get_site_option('dbem_ms_mainblog_locations')) ){
$results['blog_id'] = get_current_site()->blog_id;
}
$location_post = get_blog_post($results['blog_id'], $results['post_id']);
$search_by = $results['blog_id'];
}else{
$location_post = get_post($results['post_id']);
}
}
}else{
if(!$is_post){
if( EM_MS_GLOBAL && get_site_option('dbem_ms_mainblog_locations') ){
//blog_id will always be the main blog id if global locations are restricted only to the main blog
$search_by = $this->blog_id = get_current_site()->blog_id;
}
if( is_numeric($search_by) && is_multisite() ){
//we've been given a blog_id, so we're searching for a post id
$location_post = get_blog_post($search_by, $id);
}else{
//search for the post id only
$location_post = get_post($id);
}
}else{
$location_post = $id;
if( EM_MS_GLOBAL ){
$search_by = $this->blog_id = get_current_blog_id();
}
}
$this->post_id = !empty($id->ID) ? $id->ID : $id;
}
$this->load_postdata($location_post, $search_by);
}
$this->compat_keys();
//add this location to the cache
if( $this->location_id && $this->post_id ){
wp_cache_set($this->location_id, $this, 'em_locations');
wp_cache_set($this->post_id, $this->location_id, 'em_locations_ids');
}
do_action('em_location', $this, $id, $search_by);
}
function load_postdata($location_post, $search_by = false){
if( is_object($location_post) ){
if( $location_post->post_status != 'auto-draft' ){
if( is_numeric($search_by) && is_multisite() ){
// if in multisite mode, switch blogs quickly to get the right post meta.
switch_to_blog($search_by);
$location_meta = get_post_meta($location_post->ID);
restore_current_blog();
$this->blog_id = $search_by;
}else{
$location_meta = get_post_meta($location_post->ID);
}
//Get custom fields
foreach($location_meta as $location_meta_key => $location_meta_val){
$field_name = substr($location_meta_key, 1);
if($location_meta_key[0] != '_'){
$this->location_attributes[$location_meta_key] = ( is_array($location_meta_val) ) ? $location_meta_val[0]:$location_meta_val;
}elseif( is_string($field_name) && !in_array($field_name, $this->post_fields) ){
if( array_key_exists($field_name, $this->fields) ){
$this->$field_name = $location_meta_val[0];
}elseif( in_array($field_name, array('owner_name','owner_anonymous','owner_email')) ){
$this->$field_name = $location_meta_val[0];
}
}
}
}
//load post data - regardless
$this->post_id = $location_post->ID;
$this->location_name = $location_post->post_title;
$this->location_slug = $location_post->post_name;
$this->location_owner = $location_post->post_author;
$this->post_content = $location_post->post_content;
foreach( $location_post as $key => $value ){ //merge the post data into location object
$this->$key = $value;
}
$this->get_status();
}elseif( !empty($this->post_id) ){
//we have an orphan... show it, so that we can at least remove it on the front-end
global $wpdb;
$location_array = $wpdb->get_row($wpdb->prepare("SELECT * FROM ".EM_LOCATIONS_TABLE." WHERE post_id=%d",$this->post_id), ARRAY_A);
if( is_array($location_array) ){
$this->orphaned_location = true;
$this->post_id = $this->ID = $event_array['post_id'] = null; //reset post_id because it doesn't really exist
$this->to_object($location_array);
}
}
}
/**
* Retrieve event information via POST (used in situations where posts aren't submitted via WP)
* @param boolean $validate whether or not to run validation, default is true
* @return boolean
*/
function get_post($validate = true){
global $allowedtags;
do_action('em_location_get_post_pre', $this);
$this->location_name = ( !empty($_POST['location_name']) ) ? sanitize_post_field('post_title', $_POST['location_name'], $this->post_id, 'db'):'';
$this->post_content = ( !empty($_POST['content']) ) ? wp_kses( wp_unslash($_POST['content']), $allowedtags):'';
$this->get_post_meta(false);
//anonymous submissions and guest basic info
if( !is_user_logged_in() && get_option('dbem_events_anonymous_submissions') && empty($this->location_id) ){
$this->owner_anonymous = 1;
$this->owner_name = !empty($_POST['owner_name']) ? wp_kses_data(wp_unslash($_POST['owner_name'])):'';
$this->owner_email = !empty($_POST['owner_email']) ? wp_kses_data($_POST['owner_email']):'';
}
$result = $validate ? $this->validate():true; //validate both post and meta, otherwise return true
$this->compat_keys();
return apply_filters('em_location_get_post', $result, $this);
}
/**
* Retrieve event post meta information via POST, which should be always be called when saving the event custom post via WP.
* @param boolean $validate whether or not to run validation, default is true
* @return mixed
*/
function get_post_meta($validate = true){
//We are getting the values via POST or GET
do_action('em_location_get_post_meta_pre', $this);
$this->location_address = ( !empty($_POST['location_address']) ) ? wp_kses(wp_unslash($_POST['location_address']), array()):'';
$this->location_town = ( !empty($_POST['location_town']) ) ? wp_kses(wp_unslash($_POST['location_town']), array()):'';
$this->location_state = ( !empty($_POST['location_state']) ) ? wp_kses(wp_unslash($_POST['location_state']), array()):'';
$this->location_postcode = ( !empty($_POST['location_postcode']) ) ? wp_kses(wp_unslash($_POST['location_postcode']), array()):'';
$this->location_region = ( !empty($_POST['location_region']) ) ? wp_kses(wp_unslash($_POST['location_region']), array()):'';
$this->location_country = ( !empty($_POST['location_country']) ) ? wp_kses(wp_unslash($_POST['location_country']), array()):'';
$this->location_latitude = ( !empty($_POST['location_latitude']) && is_numeric($_POST['location_latitude']) ) ? round($_POST['location_latitude'], 6):'';
$this->location_longitude = ( !empty($_POST['location_longitude']) && is_numeric($_POST['location_longitude']) ) ? round($_POST['location_longitude'], 6):'';
//Sort out event attributes - note that custom post meta now also gets inserted here automatically (and is overwritten by these attributes)
if(get_option('dbem_location_attributes_enabled')){
global $allowedtags;
if( !is_array($this->location_attributes) ){ $this->location_attributes = array(); }
$location_available_attributes = em_get_attributes(true); //lattributes only
if( !empty($_POST['em_attributes']) && is_array($_POST['em_attributes']) ){
foreach($_POST['em_attributes'] as $att_key => $att_value ){
if( (in_array($att_key, $location_available_attributes['names']) || array_key_exists($att_key, $this->location_attributes) ) ){
$att_vals = count($location_available_attributes['values'][$att_key]);
if( $att_vals == 0 || ($att_vals > 0 && in_array($att_value, $location_available_attributes['values'][$att_key])) ){
$this->location_attributes[$att_key] = wp_unslash($att_value);
}elseif($att_vals > 0){
$this->location_attributes[$att_key] = wp_unslash(wp_kses($location_available_attributes['values'][$att_key][0], $allowedtags));
}
}
}
}
}
//location language
if( EM_ML::$is_ml && !empty($_POST['location_language']) && array_key_exists($_POST['location_language'], EM_ML::$langs) ){
$this->location_language = $_POST['location_language'];
}
//the line below should be deleted one day and we move validation out of this function, when that happens check otherfunctions like EM_ML_IO::get_post_meta function which force validation again
$result = $validate ? $this->validate_meta():true; //post returns null
$this->compat_keys();
return apply_filters('em_location_get_post_meta',$result, $this, $validate); //if making a hook, assume that eventually $validate won't be passed on
}
function validate(){
$validate_post = true;
if( empty($this->location_name) ){
$validate_post = false;
$this->add_error( __('Location name','events-manager').__(" is required.", 'events-manager') );
}
//anonymous submissions and guest basic info
if( !empty($this->owner_anonymous) ){
if( !is_email($this->owner_email) ){
$this->add_error( sprintf(__("%s is required.", 'events-manager'), __('A valid email','events-manager')) );
}
if( empty($this->owner_name) ){
$this->add_error( sprintf(__("%s is required.", 'events-manager'), __('Your name','events-manager')) );
}
}
$validate_image = $this->image_validate();
$validate_meta = $this->validate_meta();
return apply_filters('em_location_validate', $validate_post && $validate_image && $validate_meta, $this );
}
/**
* Validates the location. Should be run during any form submission or saving operation.
* @return boolean
*/
function validate_meta(){
//check required fields
foreach ( $this->required_fields as $field => $description) {
if( $field == 'location_country' && !array_key_exists($this->location_country, em_get_countries()) ){
//country specific checking
$this->add_error( $this->required_fields['location_country'].__(" is required.", 'events-manager') );
}elseif ( $this->$field == "" ) {
$this->add_error( $description.__(" is required.", 'events-manager') );
}
}
return apply_filters('em_location_validate_meta', ( count($this->errors) == 0 ), $this);
}
function save(){
global $wpdb, $current_user, $blog_id, $EM_SAVING_LOCATION;
$EM_SAVING_LOCATION = true; //this flag prevents our dashboard save_post hooks from going further
//TODO shuffle filters into right place
if( get_site_option('dbem_ms_mainblog_locations') ){ self::ms_global_switch(); }
if( !$this->can_manage('edit_locations', 'edit_others_locations') && !( get_option('dbem_events_anonymous_submissions') && empty($this->location_id)) ){
return apply_filters('em_location_save', false, $this);
}
do_action('em_location_save_pre', $this);
$post_array = array();
//Deal with updates to a location
if( !empty($this->post_id) ){
//get the full array of post data so we don't overwrite anything.
if( EM_MS_GLOBAL ){
if( !empty($this->blog_id) ){
$post_array = (array) get_blog_post($this->blog_id, $this->post_id);
}else{
$post_array = (array) get_blog_post(get_current_site()->blog_id, $this->post_id);
}
}else{
$post_array = (array) get_post($this->post_id);
}
}
//Overwrite new post info
$post_array['post_type'] = EM_POST_TYPE_LOCATION;
$post_array['post_title'] = $this->location_name;
$post_array['post_content'] = $this->post_content;
//decide on post status
if( count($this->errors) == 0 ){
if( EM_MS_GLOBAL && !is_main_site() && get_site_option('dbem_ms_mainblog_locations') ){
//if in global ms mode and user is a valid role to publish on their blog, then we will publish the location on the main blog
restore_current_blog();
$post_array['post_status'] = $this->can_manage('publish_locations') ? 'publish':'pending';
EM_Object::ms_global_switch(); //switch 'back' to main blog
}else{
$post_array['post_status'] = $this->can_manage('publish_locations') ? 'publish':'pending';
}
}else{
$post_array['post_status'] = 'draft';
}
if( !empty($this->force_status) ){
$post_array['post_status'] = $this->force_status;
}
//Anonymous submission
if( !is_user_logged_in() && get_option('dbem_events_anonymous_submissions') && empty($this->location_id) ){
$post_array['post_author'] = get_option('dbem_events_anonymous_user');
if( !is_numeric($post_array['post_author']) ) $post_array['post_author'] = 0;
}
//Save post and continue with meta
$post_id = wp_insert_post($post_array);
$post_save = false;
$meta_save = false;
if( !is_wp_error($post_id) && !empty($post_id) ){
$post_save = true;
//refresh this event with wp post
$post_data = get_post($post_id);
$this->post_id = $this->ID = $post_id;
$this->post_type = $post_data->post_type;
$this->location_slug = $post_data->post_name;
$this->location_owner = $post_data->post_author;
$this->post_status = $post_data->post_status;
$this->get_status();
//anonymous submissions should save this information
if( !empty($this->owner_anonymous) ){
update_post_meta($this->post_id, '_owner_anonymous', 1);
update_post_meta($this->post_id, '_owner_name', $this->owner_name);
update_post_meta($this->post_id, '_owner_email', $this->owner_email);
}
//save the image, errors here will surface during $this->save_meta()
$this->image_upload();
//now save the meta
$meta_save = $this->save_meta();
}elseif(is_wp_error($post_id)){
//location not saved, add an error
$this->add_error($post_id->get_error_message());
}
if( get_site_option('dbem_ms_mainblog_locations') ){ self::ms_global_switch_back(); }
$return = apply_filters('em_location_save', $post_save && $meta_save, $this );
$EM_SAVING_LOCATION = false;
//reload post data and add this location to the cache, after any other hooks have done their thing
//cache refresh when saving via admin area is handled in EM_Event_Post_Admin::save_post/refresh_cache
if( $post_save && $meta_save ){
$this->load_postdata($post_data);
if( $this->is_published() ){
//we won't depend on hooks, if we saved the event and it's still published in its saved state, refresh the cache regardless
wp_cache_set($this->location_id, $this, 'em_locations');
wp_cache_set($this->post_id, $this->location_id, 'em_locations_ids');
}
}
return $return;
}
function save_meta(){
//echo "<pre>"; print_r($this); echo "</pre>"; die();
global $wpdb;
if( $this->can_manage('edit_locations','edit_others_locations') || ( get_option('dbem_events_anonymous_submissions') && empty($this->location_id)) ){
do_action('em_location_save_meta_pre', $this);
//language default
if( !$this->location_language ) $this->location_language = EM_ML::$current_language;
//Set Blog ID if in multisite mode
if( EM_MS_GLOBAL && get_site_option('dbem_ms_mainblog_locations') ){
$this->blog_id = get_current_site()->blog_id; //global locations restricted to main blog must have main site id
}elseif( is_multisite() && empty($this->blog_id) ){
$this->blog_id = get_current_blog_id();
}
//Update Post Meta
$current_meta_values = get_post_meta($this->post_id);
foreach( array_keys($this->fields) as $key ){
if( !EM_ML::$is_ml && ($key == 'location_language' || $key == 'location_translation') ) continue;
if( !in_array($key, $this->post_fields) && $key != 'blog_id' && $this->$key != '' ){
update_post_meta($this->post_id, '_'.$key, $this->$key);
}elseif( array_key_exists('_'.$key, $current_meta_values) ){ //we should delete event_attributes, but maybe something else uses it without us knowing
delete_post_meta($this->post_id, '_'.$key);
}
}
//Update Post Custom Fields and attributes
if( get_option('dbem_location_attributes_enabled') ){
//attributes get saved as individual keys or deleted if non-existent anymore
$atts = em_get_attributes( true ); //get available attributes that EM manages
$this->location_attributes= maybe_unserialize($this->location_attributes);
foreach( $atts['names'] as $location_attribute_key ){
if( !empty($this->location_attributes[$location_attribute_key]) ){
update_post_meta($this->post_id, $location_attribute_key, $this->location_attributes[$location_attribute_key]);
}else{
delete_post_meta($this->post_id, $location_attribute_key);
}
}
}
//refresh status
$this->get_status();
$this->location_status = (count($this->errors) == 0) ? $this->location_status:null; //set status at this point, it's either the current status, or if validation fails, null
//Save to em_locations table
$location_array = $this->to_array(true);
unset($location_array['location_id']);
//decide whether or not event is private at this point
$location_array['location_private'] = ( $this->post_status == 'private' ) ? 1:0;
//check if location truly exists, meaning the location_id is actually a valid location id
if( !empty($this->location_id) ){
if( !empty($this->orphaned_location) && !empty($this->post_id) ){
//we're dealing with an orphaned event in wp_em_locations table, so we want to update the post_id and give it a post parent
$loc_truly_exists = true;
}else{
$loc_truly_exists = $wpdb->get_var('SELECT post_id FROM '.EM_LOCATIONS_TABLE." WHERE location_id={$this->location_id}") == $this->post_id;
}
}else{
$loc_truly_exists = false;
}
//save all the meta
if( empty($this->location_id) || !$loc_truly_exists ){
$this->previous_status = 0; //for sure this was previously status 0
if ( !$wpdb->insert(EM_LOCATIONS_TABLE, $location_array) ){
$this->add_error( sprintf(__('Something went wrong saving your %s to the index table. Please inform a site administrator about this.','events-manager'),__('location','events-manager')));
}else{
//success, so link the event with the post via an event id meta value for easy retrieval
$this->location_id = $wpdb->insert_id;
update_post_meta($this->post_id, '_location_id', $this->location_id);
$this->feedback_message = sprintf(__('Successfully saved %s','events-manager'),__('Location','events-manager'));
}
}else{
$this->get_previous_status();
if ( $wpdb->update(EM_LOCATIONS_TABLE, $location_array, array('location_id'=>$this->location_id)) === false ){
$this->add_error( sprintf(__('Something went wrong updating your %s to the index table. Please inform a site administrator about this.','events-manager'),__('location','events-manager')));
}else{
$this->feedback_message = sprintf(__('Successfully saved %s','events-manager'),__('Location','events-manager'));
//Also set the status here if status != previous status
if( $this->previous_status != $this->get_status() ) $this->set_status($this->get_status());
}
//check anonymous submission information
if( !empty($this->owner_anonymous) && get_option('dbem_events_anonymous_user') != $this->location_owner ){
//anonymous user owner has been replaced with a valid wp user account, so we remove anonymous status flag but leave email and name for future reference
update_post_meta($this->post_id, '_owner_anonymous', 0);
}elseif( get_option('dbem_events_anonymous_submissions') && get_option('dbem_events_anonymous_user') == $this->location_owner && is_email($this->owner_email) && !empty($this->owner_name) ){
//anonymous user account has been reinstated as the owner, so we can restore anonymous submission status
update_post_meta($this->post_id, '_owner_anonymous', 1);
}
}
}else{
$this->add_error( sprintf(__('You do not have permission to create/edit %s.','events-manager'), __('locations','events-manager')) );
}
$this->compat_keys();
$result = count($this->errors) == 0;
return apply_filters('em_location_save_meta', count($this->errors) == 0, $this);
}
function delete($force_delete = false){
$result = false;
if( $this->can_manage('delete_locations','delete_others_locations') ){
if( !is_admin() ){
include_once('em-location-post-admin.php');
if( !defined('EM_LOCATION_DELETE_INCLUDE') ){
EM_Location_Post_Admin::init();
define('EM_LOCATION_DELETE_INCLUDE',true);
}
}
do_action('em_location_delete_pre', $this);
if( $force_delete ){
$result = wp_delete_post($this->post_id,$force_delete);
}else{
$result = wp_trash_post($this->post_id);
if( !$result && $this->post_status == 'trash' && $this->location_status != -1 ){
//we're probably dealing with a trashed post already, which will return a false with wp_trash_post, but the location_status is null from < v5.4.1 so refresh it
$this->set_status(-1);
$result = true;
}
}
if( !$result && !empty($this->orphaned_location) ){
//this is an orphaned event, so the wp delete posts would have never worked, so we just delete the row in our locations table
$result = $this->delete_meta();
}
}
return apply_filters('em_location_delete', $result != false, $this);
}
function delete_meta(){
global $wpdb;
$result = false;
if( $this->can_manage('delete_locations','delete_others_locations') ){
do_action('em_location_delete_meta_pre', $this);
$result = $wpdb->query ( $wpdb->prepare("DELETE FROM ". EM_LOCATIONS_TABLE ." WHERE location_id=%d", $this->location_id) );
}
return apply_filters('em_location_delete_meta', $result !== false, $this);
}
function is_published(){
return apply_filters('em_location_is_published', ($this->post_status == 'publish' || $this->post_status == 'private'), $this);
}
/**
* Change the status of the location. This will save to the Database too.
* @param int $status A number to change the status to, which may be -1 for trash, 1 for publish, 0 for pending or null if draft.
* @param boolean $set_post_status If set to true the wp_posts table status will also be changed to the new corresponding status.
* @return string
*/
function set_status($status, $set_post_status = false){
global $wpdb;
//decide on what status to set and update wp_posts in the process
if($status === null){
$set_status='NULL'; //draft post
if($set_post_status){
//if the post is trash, don't untrash it!
$wpdb->update( $wpdb->posts, array( 'post_status' => 'draft' ), array( 'ID' => $this->post_id ) );
}
$this->post_status = 'draft';
}elseif( $status == -1 ){ //trashed post
$set_status = -1;
if($set_post_status){
//set the post status of the location in wp_posts too
$wpdb->update( $wpdb->posts, array( 'post_status' => 'trash' ), array( 'ID' => $this->post_id ) );
}
$this->post_status = 'trash'; //set post status in this instance
}else{
$set_status = $status ? 1:0; //published or pending post
$post_status = $set_status ? 'publish':'pending';
if( empty($this->post_name) ){
//published or pending posts should have a valid post slug
$slug = sanitize_title($this->post_title);
$this->post_name = wp_unique_post_slug( $slug, $this->post_id, $post_status, EM_POST_TYPE_LOCATION, 0);
$set_post_name = true;
}
if($set_post_status){
$wpdb->update( $wpdb->posts, array( 'post_status' => $post_status, 'post_name' => $this->post_name ), array( 'ID' => $this->post_id ) );
}elseif( !empty($set_post_name) ){
//if we've added a post slug then update wp_posts anyway
$wpdb->update( $wpdb->posts, array( 'post_name' => $this->post_name ), array( 'ID' => $this->post_id ) );
}
$this->post_status = $post_status;
}
//save in the wp_em_locations table
$this->previous_status = $wpdb->get_var('SELECT location_status FROM '.EM_LOCATIONS_TABLE.' WHERE location_id='.$this->location_id); //get status from db, not post_status, as posts get saved quickly
$result = $wpdb->query($wpdb->prepare("UPDATE ".EM_LOCATIONS_TABLE." SET location_status=$set_status, location_slug=%s WHERE location_id=%d", array($this->post_name, $this->location_id)));
$this->get_status(); //reload status
return apply_filters('em_location_set_status', $result !== false, $status, $this);
}
/**
* Gets the parent of this location, if none exists, null is returned.
* @return EM_Location|null
*/
public function get_parent(){
if( $this->location_parent ){
return em_get_location( $this->location_parent );
}
return null;
}
function get_status($db = false){
switch( $this->post_status ){
case 'private':
$this->location_private = 1;
$this->location_status = $status = 1;
break;
case 'publish':
$this->location_private = 0;
$this->location_status = $status = 1;
break;
case 'pending':
$this->location_private = 0;
$this->location_status = $status = 0;
break;
case 'trash':
$this->location_private = 0;
$this->location_status = $status = -1;
break;
default: //draft or unknown
$this->location_private = 0;
$status = $db ? 'NULL':null;
$this->location_status = null;
break;
}
return $status;
}
function get_previous_status( $force = false ){
global $wpdb;
if( $this->previous_status === false || $force ){
$this->previous_status = $wpdb->get_var('SELECT location_status FROM '.EM_LOCATIONS_TABLE.' WHERE location_id='.$this->location_id); //get status from db, not post_status
}
return $this->previous_status;
}
/**
* @param $criteria
* @return mixed|void
* @deprecated Since 5.9.8.2 - Was never used, assume this may be removed eventually and copy code into your own custom implementation if necessary.
*/
function load_similar($criteria){
global $wpdb;
if( !empty($criteria['location_name']) && !empty($criteria['location_address']) && !empty($criteria['location_town']) && !empty($criteria['location_state']) && !empty($criteria['location_postcode']) && !empty($criteria['location_country']) ){
$locations_table = EM_LOCATIONS_TABLE;
$prepared_sql = $wpdb->prepare("SELECT * FROM $locations_table WHERE location_name = %s AND location_address = %s AND location_town = %s AND location_state = %s AND location_postcode = %s AND location_country = %s", stripcslashes($criteria['location_name']), stripcslashes($criteria['location_address']), stripcslashes($criteria['location_town']), stripcslashes($criteria['location_state']), stripcslashes($criteria['location_postcode']), stripcslashes($criteria['location_country']) );
//$wpdb->show_errors(true);
$location = $wpdb->get_row($prepared_sql, ARRAY_A);
if( is_array($location) ){
$this->to_object($location);
}
return apply_filters('em_location_load_similar', $location, $this);
}
return apply_filters('em_location_load_similar', false, $this);
}
function has_events( $status = 1 ){
global $wpdb;
$events_count = EM_Events::count(array('location_id' => $this->location_id, 'status' => $status));
return apply_filters('em_location_has_events', $events_count > 0, $this);
}
/**
* Can the user manage this location?
*/
function can_manage( $owner_capability = false, $admin_capability = false, $user_to_check = false ){
if( $this->location_id == '' && !is_user_logged_in() && get_option('dbem_events_anonymous_submissions') ){
$user_to_check = get_option('dbem_events_anonymous_user');
}
if( $admin_capability && EM_MS_GLOBAL && get_site_option('dbem_ms_mainblog_locations') ){
//if in global mode with locations restricted to main blog, we check capabilities against the main blog
self::ms_global_switch();
$return = parent::can_manage($owner_capability, $admin_capability, $user_to_check);
self::ms_global_switch_back();
}else{
$return = parent::can_manage($owner_capability, $admin_capability, $user_to_check);
}
return apply_filters('em_location_can_manage', $return, $this, $owner_capability, $admin_capability, $user_to_check);
}
function get_permalink(){
if( EM_MS_GLOBAL ){
//if no blog id defined, assume it belongs to the main blog
$blog_id = empty($this->blog_id) ? get_current_site()->blog_id:$this->blog_id;
if( get_site_option('dbem_ms_mainblog_locations') ){
//all locations belong to the main blog
$link = get_blog_permalink( get_current_site()->blog_id, $this->post_id);
}elseif( $blog_id != get_current_blog_id() ){
//decide whether to give a link to the blog the location originates from or to show it on the main site
if( !get_site_option('dbem_ms_global_locations_links') && is_main_site() && get_option('dbem_locations_page') ){
//showing subsite locations on main site, create a custom link
$link = trailingslashit(get_permalink(get_option('dbem_locations_page')).get_site_option('dbem_ms_locations_slug',EM_LOCATION_SLUG).'/'.$this->location_slug.'-'.$this->location_id);
}else{
//if location doesn't belong to current blog and/or if main blog doesn't have a locations page, link directly to the blog it belongs to
$link = get_blog_permalink( $blog_id, $this->post_id);
}
}
}
if( empty($link) ){
$link = get_post_permalink($this->post_id);
}
return apply_filters('em_location_get_permalink', $link, $this); ;
}
function get_ical_url(){
global $wp_rewrite;
if( !empty($wp_rewrite) && $wp_rewrite->using_permalinks() ){
$return = trailingslashit($this->get_permalink()).'ical/';
}else{
$return = em_add_get_params($this->get_permalink(), array('ical'=>1));
}
return apply_filters('em_location_get_ical_url', $return);
}
function get_rss_url(){
global $wp_rewrite;
if( !empty($wp_rewrite) && $wp_rewrite->using_permalinks() ){
$return = trailingslashit($this->get_permalink()).'feed/';
}else{
$return = em_add_get_params($this->get_permalink(), array('feed'=>1));
}
return apply_filters('em_location_get_rss_url', $return);
}
/*
* Extends the default EM_Object function by switching blogs as needed if in MS Global mode
* @param string $size
* @return string
* @see EM_Object::get_image_url()
*/
function get_image_url($size = 'full'){
if( EM_MS_GLOBAL && get_current_blog_id() != $this->blog_id ){
switch_to_blog($this->blog_id);
$switch_back = true;
}
$return = parent::get_image_url($size);
if( !empty($switch_back) ){ restore_current_blog(); }
return $return;
}
function get_edit_url(){
if( $this->can_manage('edit_locations','edit_others_locations') ){
if( EM_MS_GLOBAL ){
global $current_site, $current_blog;
if( get_site_option('dbem_ms_mainblog_locations') ){
//location stored as post on main blog, but can be edited either in sub-blog admin area or if not on main blog
if( get_blog_option($this->blog_id, 'dbem_edit_locations_page') && !is_admin() ){
$link = em_add_get_params(get_blog_permalink($this->blog_id, get_blog_option($this->blog_id, 'dbem_edit_locations_page')), array('action'=>'edit','location_id'=>$this->location_id), false);
}
if( (is_main_site() || empty($link)) && get_blog_option($current_site->blog_id, 'dbem_edit_locations_page') && !is_admin() ){ //if editing on main site and edit page exists, stay on same site
$link = em_add_get_params(get_blog_permalink(get_option('dbem_edit_locations_page')), array('action'=>'edit','location_id'=>$this->location_id), false);
}
if( empty($link) && !is_main_site() ){
$link = get_admin_url($current_blog->blog_id, "edit.php?post_type=event&page=locations&action=edit&location_id={$this->location_id}");
}elseif( empty($link) && is_main_site() ){
$link = get_admin_url($current_site->blog_id, "post.php?post={$this->post_id}&action=edit");
}
}else{
//location stored as post on blog where location was created
if( get_blog_option($this->blog_id, 'dbem_edit_locations_page') && !is_admin() ){
$link = em_add_get_params(get_blog_permalink($this->blog_id, get_blog_option($this->blog_id, 'dbem_edit_locations_page')), array('action'=>'edit','location_id'=>$this->location_id), false);
}
if( (is_main_site() || empty($link)) && get_blog_option($current_site->blog_id, 'dbem_edit_locations_page') && !is_admin() ){ //if editing on main site and edit page exists, stay on same site
$link = em_add_get_params(get_blog_permalink($current_site->blog_id, get_blog_option($current_site->blog_id, 'dbem_edit_locations_page')), array('action'=>'edit','location_id'=>$this->location_id), false);
}
if( empty($link)){
$link = get_admin_url($this->blog_id, "post.php?post={$this->post_id}&action=edit");
}
}
}else{
if( get_option('dbem_edit_locations_page') && !is_admin() ){
$link = em_add_get_params(get_permalink(get_option('dbem_edit_locations_page')), array('action'=>'edit','location_id'=>$this->location_id), false);
}
if( empty($link))
$link = admin_url()."post.php?post={$this->post_id}&action=edit";
}
return apply_filters('em_location_get_edit_url', $link, $this);
}
}
function output_single($target = 'html'){
$format = get_option ( 'dbem_single_location_format' );
return apply_filters('em_location_output_single', $this->output($format, $target), $this, $target);
}
function output($format, $target="html") {
$location_string = $format;
//First let's do some conditional placeholder removals
for ($i = 0 ; $i < EM_CONDITIONAL_RECURSIONS; $i++){ //you can add nested recursions by modifying this setting in your wp_options table
preg_match_all('/\{([a-zA-Z0-9_]+)\}(.+?)\{\/\1\}/s', $location_string, $conditionals);
if( count($conditionals[0]) > 0 ){
//Check if the language we want exists, if not we take the first language there
foreach($conditionals[1] as $key => $condition){
$show_condition = false;
if ($condition == 'has_loc_image'){
//does this event have an image?
$show_condition = ( $this->get_image_url() != '' );
}elseif ($condition == 'no_loc_image'){
//does this event have an image?
$show_condition = ( $this->get_image_url() == '' );
}elseif ($condition == 'has_events'){
//does this location have any events
$show_condition = $this->has_events();
}elseif ($condition == 'no_events'){
//does this location NOT have any events?
$show_condition = $this->has_events() == false;
}
$show_condition = apply_filters('em_location_output_show_condition', $show_condition, $condition, $conditionals[0][$key], $this);
if($show_condition){
//calculate lengths to delete placeholders
$placeholder_length = strlen($condition)+2;
$replacement = substr($conditionals[0][$key], $placeholder_length, strlen($conditionals[0][$key])-($placeholder_length *2 +1));
}else{
$replacement = '';
}
$location_string = str_replace($conditionals[0][$key], apply_filters('em_location_output_condition', $replacement, $condition, $conditionals[0][$key], $this), $location_string);
}
}
}
//This is for the custom attributes
preg_match_all('/#_LATT\{([^}]+)\}(\{([^}]+)\})?/', $location_string, $results);
foreach($results[0] as $resultKey => $result) {
//check that we haven't mistakenly captured a closing bracket in second bracket set
if( !empty($results[3][$resultKey]) && $results[3][$resultKey][0] == '/' ){
$result = $results[0][$resultKey] = str_replace($results[2][$resultKey], '', $result);
$results[3][$resultKey] = $results[2][$resultKey] = '';
}
//Strip string of placeholder and just leave the reference
$attRef = substr( substr($result, 0, strpos($result, '}')), 7 );
$attString = '';
$placeholder_atts = array('#_ATT', $results[1][$resultKey]);
if( is_array($this->location_attributes) && array_key_exists($attRef, $this->location_attributes) ){
$attString = $this->location_attributes[$attRef];
}elseif( !empty($results[3][$resultKey]) ){
//Check to see if we have a second set of braces;
$placeholder_atts[] = $results[3][$resultKey];
$attStringArray = explode('|', $results[3][$resultKey]);
$attString = $attStringArray[0];
}elseif( !empty($attributes['values'][$attRef][0]) ){
$attString = $attributes['values'][$attRef][0];
}
$attString = apply_filters('em_location_output_placeholder', $attString, $this, $result, $target, $placeholder_atts);
$location_string = str_replace($result, $attString ,$location_string );
}
preg_match_all("/(#@?_?[A-Za-z0-9_]+)({([^}]+)})?/", $location_string, $placeholders);
$replaces = array();
foreach($placeholders[1] as $key => $result) {
$replace = '';
$full_result = $placeholders[0][$key];
$placeholder_atts = array($result);
if( !empty($placeholders[3][$key]) ) $placeholder_atts[] = $placeholders[3][$key];
switch( $result ){
case '#_LOCATIONID':
$replace = $this->location_id;
break;
case '#_LOCATIONPOSTID':
$replace = $this->post_id;
break;
case '#_NAME': //Depricated
case '#_LOCATION': //Depricated
case '#_LOCATIONNAME':
$replace = $this->location_name;
break;
case '#_ADDRESS': //Depricated
case '#_LOCATIONADDRESS':
$replace = $this->location_address;
break;
case '#_TOWN': //Depricated
case '#_LOCATIONTOWN':
$replace = $this->location_town;
break;
case '#_LOCATIONSTATE':
$replace = $this->location_state;
break;
case '#_LOCATIONPOSTCODE':
$replace = $this->location_postcode;
break;
case '#_LOCATIONREGION':
$replace = $this->location_region;
break;
case '#_LOCATIONCOUNTRY':
$replace = $this->get_country();
break;
case '#_LOCATIONFULLLINE':
case '#_LOCATIONFULLBR':
$glue = $result == '#_LOCATIONFULLLINE' ? ', ':'<br>';
$replace = $this->get_full_address($glue);
break;
case '#_MAP': //Deprecated (but will remain)
case '#_LOCATIONMAP':
if( get_option('dbem_gmap_is_active') ){
ob_start();
$args = array();
if( !empty($placeholders[3][$key]) ){
$dimensions = explode(',', $placeholders[3][$key]);
if(!empty($dimensions[0])) $args['width'] = $dimensions[0];
if(!empty($dimensions[1])) $args['height'] = $dimensions[1];
}
em_locate_template('placeholders/locationmap.php', true, array('args'=>$args,'EM_Location'=>$this));
$replace = ob_get_clean();
}
break;
case '#_LOCATIONLONGITUDE':
$replace = $this->location_longitude;
break;
case '#_LOCATIONLATITUDE':
$replace = $this->location_latitude;
break;
case '#_DESCRIPTION': //Deprecated
case '#_LOCATIONNOTES':
$replace = $this->post_content;
break;
case '#_EXCERPT': //Deprecated
case '#_LOCATIONEXCERPT':
case '#_LOCATIONEXCERPTCUT':
if( !empty($this->post_excerpt) && $result != "#_LOCATIONEXCERPTCUT" ){
$replace = $this->post_excerpt;
}else{
$excerpt_length = ( $result == "#_LOCATIONEXCERPTCUT" ) ? 55 : false;
$excerpt_more = apply_filters('em_excerpt_more', ' ' . '[...]');
if( !empty($placeholders[3][$key]) ){
$ph_args = explode(',', $placeholders[3][$key]);
if( is_numeric($ph_args[0]) || empty($ph_args[0]) ) $excerpt_length = $ph_args[0];
if( !empty($ph_args[1]) ) $excerpt_more = $ph_args[1];
}
$replace = $this->output_excerpt($excerpt_length, $excerpt_more, $result == "#_LOCATIONEXCERPTCUT");
}
break;
case '#_LOCATIONIMAGEURL':
case '#_LOCATIONIMAGE':
$image_url = $this->get_image_url();
if( $image_url != ''){
$image_url = esc_url($image_url);
if($result == '#_LOCATIONIMAGEURL'){
$replace = $image_url;
}else{
if( empty($placeholders[3][$key]) ){
$replace = "<img src='".$image_url."' alt='".esc_attr($this->location_name)."'/>";
}else{
$image_size = explode(',', $placeholders[3][$key]);
if( self::array_is_numeric($image_size) && count($image_size) > 1 ){
if( EM_MS_GLOBAL && get_current_blog_id() != $this->blog_id ){
//get a thumbnail
if( get_option('dbem_disable_thumbnails') ){
$image_attr = '';
$image_args = array();
if( empty($image_size[1]) && !empty($image_size[0]) ){
$image_attr = 'width="'.$image_size[0].'"';
$image_args['w'] = $image_size[0];
}elseif( empty($image_size[0]) && !empty($image_size[1]) ){
$image_attr = 'height="'.$image_size[1].'"';
$image_args['h'] = $image_size[1];
}elseif( !empty($image_size[0]) && !empty($image_size[1]) ){
$image_attr = 'width="'.$image_size[0].'" height="'.$image_size[1].'"';
$image_args = array('w'=>$image_size[0], 'h'=>$image_size[1]);
}
$replace = "<img src='".esc_url(em_add_get_params($image_url, $image_args))."' alt='".esc_attr($this->location_name)."' $image_attr />";
}else{
//location belongs to another blog, so switch blog then call the default wp fucntion
if( EM_MS_GLOBAL && get_current_blog_id() != $this->blog_id ){
switch_to_blog($this->blog_id);
$switch_back = true;
}
$replace = get_the_post_thumbnail($this->ID, $image_size, array('alt' => esc_attr($this->location_name)) );
if( !empty($switch_back) ){ restore_current_blog(); }
}
}else{
$replace = get_the_post_thumbnail($this->ID, $image_size);
}
}else{
$replace = "<img src='".$image_url."' alt='".esc_attr($this->location_name)."'/>";
}
}
}
}
break;
case '#_LOCATIONURL':
case '#_LOCATIONLINK':
case '#_LOCATIONPAGEURL': //Depricated
$link = esc_url($this->get_permalink());
$replace = ($result == '#_LOCATIONURL' || $result == '#_LOCATIONPAGEURL') ? $link : '<a href="'.$link.'">'.esc_html($this->location_name).'</a>';
break;
case '#_LOCATIONEDITURL': // Deprecated - always worked but documented as #_EDITLOCATIONURL
case '#_LOCATIONEDITLINK': // Deprecated - always worked but documented incorrectly as #_EDITLOCATIONLINK
case '#_EDITLOCATIONURL':
case '#_EDITLOCATIONLINK':
if( $this->can_manage('edit_locations','edit_others_locations') ){
$link = esc_url($this->get_edit_url());
$replace = ($result == '#_LOCATIONEDITURL' || $result == '#_EDITLOCATIONURL' ) ? $link : '<a href="'.$link.'" title="'.esc_attr($this->location_name).'">'.esc_html(sprintf(__('Edit Location','events-manager'))).'</a>';
}
break;
case '#_LOCATIONICALURL':
case '#_LOCATIONICALLINK':
$replace = $this->get_ical_url();
if( $result == '#_LOCATIONICALLINK' ){
$replace = '<a href="'.esc_url($replace).'">iCal</a>';
}
break;
case '#_LOCATIONWEBCALURL':
case '#_LOCATIONWEBCALLINK':
$replace = $this->get_ical_url();
$replace = str_replace(array('http://','https://'), 'webcal://', $replace);
if( $result == '#_LOCATIONWEBCALLINK' ){
$replace = '<a href="'.esc_url($replace).'">Webcal</a>';
}
break;
case '#_LOCATIONRSSURL':
case '#_LOCATIONRSSLINK':
$replace = $this->get_rss_url();
if( $result == '#_LOCATIONRSSLINK' ){
$replace = '<a href="'.esc_url($replace).'">RSS</a>';
}
break;
case '#_PASTEVENTS': //Depricated
case '#_LOCATIONPASTEVENTS':
case '#_NEXTEVENTS': //Depricated
case '#_LOCATIONNEXTEVENTS':
case '#_ALLEVENTS': //Depricated
case '#_LOCATIONALLEVENTS':
//TODO: add limit to lists of events
//convert deprecated placeholders for compatability
$result = ($result == '#_PASTEVENTS') ? '#_LOCATIONPASTEVENTS':$result;
$result = ($result == '#_NEXTEVENTS') ? '#_LOCATIONNEXTEVENTS':$result;
$result = ($result == '#_ALLEVENTS') ? '#_LOCATIONALLEVENTS':$result;
//forget it ever happened? :/
if ( $result == '#_LOCATIONPASTEVENTS'){ $scope = 'past'; }
elseif ( $result == '#_LOCATIONNEXTEVENTS' ){ $scope = 'future'; }
else{ $scope = 'all'; }
$args = array('location'=>$this->location_id, 'scope'=>$scope, 'pagination'=>1, 'ajax'=>0);
$args['format_header'] = get_option('dbem_location_event_list_item_header_format');
$args['format_footer'] = get_option('dbem_location_event_list_item_footer_format');
$args['format'] = get_option('dbem_location_event_list_item_format');
$args['no_results_msg'] = get_option('dbem_location_no_events_message');
$args['limit'] = !empty($placeholders[3][$key]) && is_numeric($placeholders[3][$key]) ? absint($placeholders[3][$key]) : get_option('dbem_location_event_list_limit');
$args['orderby'] = get_option('dbem_location_event_list_orderby');
$args['order'] = get_option('dbem_location_event_list_order');
$args['page'] = (!empty($_REQUEST['pno']) && is_numeric($_REQUEST['pno']) )? $_REQUEST['pno'] : 1;
if( $target == 'email' || !empty($placeholders[3][$key]) ){
$args['pagination'] = 0;
$args['page'] = 1;
}
$replace = EM_Events::output($args);
break;
case '#_LOCATIONNEXTEVENT':
$events = EM_Events::get( array('location'=>$this->location_id, 'scope'=>'future', 'limit'=>1, 'orderby'=>'event_start_date,event_start_time') );
$replace = get_option('dbem_location_no_event_message');
foreach($events as $EM_Event){
$replace = $EM_Event->output(get_option('dbem_location_event_single_format'));
}
break;
default:
$replace = $full_result;
break;
}
$replaces[$full_result] = apply_filters('em_location_output_placeholder', $replace, $this, $full_result, $target, $placeholder_atts);
}
//sort out replacements so that during replacements shorter placeholders don't overwrite longer varieties.
krsort($replaces);
foreach($replaces as $full_result => $replacement){
if( !in_array($full_result, array('#_DESCRIPTION','#_LOCATIONNOTES')) ){
$location_string = str_replace($full_result, $replacement , $location_string );
}else{
$desc_replace[$full_result] = $replacement;
}
}
//Finally, do the location notes, so that previous placeholders don't get replaced within the content, which may use shortcodes
if( !empty($desc_replace) ){
foreach($desc_replace as $full_result => $replacement){
$location_string = str_replace($full_result, $replacement , $location_string );
}
}
return apply_filters('em_location_output', $location_string, $this, $format, $target);
}
function get_country(){
$countries = em_get_countries();
if( !empty($countries[$this->location_country]) ){
return apply_filters('em_location_get_country', $countries[$this->location_country], $this);
}
return apply_filters('em_location_get_country', false, $this);
}
function get_full_address($glue = ', ', $include_country = false){
$location_array = array();
if( !empty($this->location_address) ) $location_array[] = $this->location_address;
if( !empty($this->location_town) ) $location_array[] = $this->location_town;
if( !empty($this->location_state) ) $location_array[] = $this->location_state;
if( !empty($this->location_postcode) ) $location_array[] = $this->location_postcode;
if( !empty($this->location_region) ) $location_array[] = $this->location_region;
if( $include_country ) $location_array[] = $this->get_country();
return implode($glue, $location_array);
}
function get_google_maps_embed_url(){
//generate the map url
$latlng = $this->location_latitude.','.$this->location_longitude;
$args = apply_filters('em_location_google_maps_embed_args', array(
'maptype' => 'roadmap',
'zoom' => 15,
'key' => get_option('dbem_google_maps_browser_key')
), $this);
if( get_option('dbem_gmap_embed_type') == 'place' ){
$args['q'] = urlencode($this->location_name.', '. $this->get_full_address());
}elseif( get_option('dbem_gmap_embed_type') == 'address' ){
$args['q'] = urlencode($this->get_full_address());
}else{
$args['q'] = $latlng;
}
$url = add_query_arg( $args, "https://www.google.com/maps/embed/v1/place");
return apply_filters('em_location_get_google_maps_embed_url', $url, $this);
}
public function to_api(){
return array (
'name' => $this->location_name,
'id' => $this->location_id,
'parent' => $this->location_parent,
'post_id' => $this->post_id,
'blog_id' => $this->blog_id,
'owner' => $this->location_owner,
'status' => $this->location_status,
'slug' => $this->location_slug,
'content' => $this->post_content,
'geo' => array(
'latitude' => $this->location_latitude,
'longitude' => $this->location_longitude,
),
'address' => array(
'address' => $this->location_address,
'town' => $this->location_town,
'region' => $this->location_region,
'state' => $this->location_state,
'postcode' => $this->location_postcode,
'country' => $this->location_country,
),
'language' => $this->location_language,
'translation' => $this->location_translation,
);
}
}