class-frontend.php
81.2 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
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
<?php
/**
* Frontend class
*
* @author Tijmen Smit
* @since 1.0.0
*/
if ( !defined( 'ABSPATH' ) ) exit;
if ( !class_exists( 'WPSL_Frontend' ) ) {
/**
* Handle the frontend of the store locator
*
* @since 1.0.0
*/
class WPSL_Frontend {
/**
* Keep track which scripts we need to load
*
* @since 2.0.0
*/
private $load_scripts = array();
/**
* Keep track of the amount of maps on the page
*
* @since 2.0.0
*/
private static $map_count = 0;
/*
* Holds the shortcode atts for the [wpsl] shortcode.
*
* Used to overwrite the settings just before
* they are send to wp_localize_script.
*
* @since 2.1.1
*/
public $sl_shortcode_atts;
private $store_map_data = array();
/**
* Class constructor
*/
public function __construct() {
$this->includes();
if ( function_exists( 'BorlabsCookieHelper' ) ) {
add_action( 'init', array( $this, 'borlabs_cookie' ) );
}
add_action( 'wp_ajax_store_search', array( $this, 'store_search' ) );
add_action( 'wp_ajax_nopriv_store_search', array( $this, 'store_search' ) );
add_action( 'wp_enqueue_scripts', array( $this, 'add_frontend_styles' ) );
add_action( 'wp_footer', array( $this, 'add_frontend_scripts' ) );
add_filter( 'the_content', array( $this, 'cpt_template' ) );
add_shortcode( 'wpsl', array( $this, 'show_store_locator' ) );
add_shortcode( 'wpsl_address', array( $this, 'show_store_address' ) );
add_shortcode( 'wpsl_hours', array( $this, 'show_opening_hours' ) );
add_shortcode( 'wpsl_map', array( $this, 'show_store_map' ) );
}
/**
* Include the required front-end files.
*
* @since 2.0.0
* @return void
*/
public function includes() {
require_once( WPSL_PLUGIN_DIR . 'frontend/underscore-functions.php' );
}
/**
* Include the required file for the borlabs cookie plugin to work.
*
* @since 2.2.22
* @return void
*/
public function borlabs_cookie() {
require_once( WPSL_PLUGIN_DIR . 'inc/class-borlabs-cookie.php' );
}
/**
* Handle the Ajax search on the frontend.
*
* @since 1.0.0
* @return json A list of store locations that are located within the selected search radius
*/
public function store_search() {
global $wpsl_settings;
/*
* Check if auto loading the locations on page load is enabled.
*
* If so then we save the store data in a transient to prevent a long loading time
* in case a large amount of locations need to be displayed.
*
* The SQL query that selects nearby locations doesn't take that long,
* but collecting all the store meta data in get_store_meta_data() for hunderds,
* or thousands of stores can make it really slow.
*/
if ( $wpsl_settings['autoload'] && isset( $_GET['autoload'] ) && $_GET['autoload'] && !$wpsl_settings['debug'] && !isset( $_GET['skip_cache'] ) ) {
$transient_name = $this->create_transient_name();
if ( false === ( $store_data = get_transient( 'wpsl_autoload_' . $transient_name ) ) ) {
$store_data = $this->find_nearby_locations();
if ( $store_data ) {
set_transient( 'wpsl_autoload_' . $transient_name, $store_data, 0 );
}
}
} else {
$store_data = $this->find_nearby_locations();
}
do_action( 'wpsl_store_search' );
wp_send_json( $store_data );
exit();
}
/**
* Create the name used in the wpsl autoload transient.
*
* @since 2.1.1
* @return string $transient_name The transient name.
*/
public function create_transient_name() {
global $wpsl, $wpsl_settings;
$name_section = array();
// Include the set autoload limit.
if ( $wpsl_settings['autoload'] && $wpsl_settings['autoload_limit'] ) {
$name_section[] = absint( $wpsl_settings['autoload_limit'] );
}
/*
* Check if we need to include the cat id(s) in the transient name.
*
* This can only happen if the user used the
* 'category' attr on the wpsl shortcode.
*/
if ( isset( $_GET['filter'] ) && $_GET['filter'] ) {
$name_section[] = absint( str_replace( ',', '', $_GET['filter'] ) );
}
// Include the lat value from the start location.
if ( isset( $_GET['lat'] ) && $_GET['lat'] ) {
$name_section[] = absint( str_replace( '.', '', $_GET['lat'] ) );
}
/*
* If a multilingual plugin ( WPML or qTranslate X ) is active then we have
* to make sure each language has his own unique transient. We do this by
* including the lang code in the transient name.
*
* Otherwise if the language is for example set to German on page load,
* and the user switches to Spanish, then he would get the incorrect
* permalink structure ( /de/.. instead or /es/.. ) and translated
* store details.
*/
$lang_code = $wpsl->i18n->check_multilingual_code();
if ( $lang_code ) {
$name_section[] = $lang_code;
}
$transient_name = implode( '_', $name_section );
/*
* If the distance unit filter ( wpsl_distance_unit ) is used to change the km / mi unit based on
* the location of the IP, then we include the km / mi in the transient name. This is done to
* prevent users from seeing the wrong distances from the cached data.
*
* This way one data set can include the distance in km, and the other one the distance in miles.
*/
if ( has_filter( 'wpsl_distance_unit' ) ) {
$transient_name = $transient_name . '_' . wpsl_get_distance_unit();
}
return $transient_name;
}
/**
* Find store locations that are located within the selected search radius.
*
* This happens by calculating the distance between the
* latlng of the searched location, and the latlng from
* the stores in the db.
*
* @since 2.0.0
* @param array $args The arguments to use in the SQL query, only used by add-ons
* @return void|array $store_data The list of stores that fall within the selected range.
*/
public function find_nearby_locations( $args = array() ) {
global $wpdb, $wpsl, $wpsl_settings;
$store_data = array();
/*
* Set the correct earth radius in either km or miles.
* We need this to calculate the distance between two coordinates.
*/
$placeholder_values[] = ( wpsl_get_distance_unit() == 'km' ) ? 6371 : 3959;
// The placeholder values for the prepared statement in the SQL query.
if ( empty( $args ) ) {
$args = $_GET;
}
array_push( $placeholder_values, $args['lat'], $args['lng'], $args['lat'] );
// Check if we need to filter the results by category.
if ( isset( $args['filter'] ) && $args['filter'] ) {
$filter_ids = array_map( 'absint', explode( ',', $args['filter'] ) );
$cat_filter = "INNER JOIN $wpdb->term_relationships AS term_rel ON posts.ID = term_rel.object_id
INNER JOIN $wpdb->term_taxonomy AS term_tax ON term_rel.term_taxonomy_id = term_tax.term_taxonomy_id
AND term_tax.taxonomy = 'wpsl_store_category'
AND term_tax.term_id IN (" . implode( ',', $filter_ids ) . ")";
} else {
$cat_filter = '';
}
/*
* If WPML is active we include 'GROUP BY lat' in the sql query
* to prevent duplicate locations from showing up in the results.
*
* This is a problem when a store location for example
* exists in 4 different languages. They would all fall within
* the selected radius, but we only need one store ID for the 'icl_object_id'
* function to get the correct store ID for the current language.
*/
if ( $wpsl->i18n->wpml_exists() ) {
$group_by = 'GROUP BY lat';
} else {
$group_by = 'GROUP BY posts.ID';
}
/*
* If autoload is enabled we need to check if there is a limit to the
* amount of locations we need to show.
*
* Otherwise include the radius and max results limit in the sql query.
*/
if ( isset( $args['autoload'] ) && $args['autoload'] ) {
$limit = '';
if ( $wpsl_settings['autoload_limit'] ) {
$limit = 'LIMIT %d';
$placeholder_values[] = $wpsl_settings['autoload_limit'];
}
$sql_sort = 'ORDER BY distance '. $limit;
} else {
array_push( $placeholder_values, $this->check_store_filter( $args, 'search_radius' ), $this->check_store_filter( $args, 'max_results' ) );
$sql_sort = 'HAVING distance < %d ORDER BY distance LIMIT 0, %d';
}
$placeholder_values = apply_filters( 'wpsl_sql_placeholder_values', $placeholder_values );
/*
* The sql that will check which store locations fall within
* the selected radius based on the lat and lng values.
*/
$sql = apply_filters( 'wpsl_sql',
"SELECT post_lat.meta_value AS lat,
post_lng.meta_value AS lng,
posts.ID,
( %d * acos( cos( radians( %s ) ) * cos( radians( post_lat.meta_value ) ) * cos( radians( post_lng.meta_value ) - radians( %s ) ) + sin( radians( %s ) ) * sin( radians( post_lat.meta_value ) ) ) )
AS distance
FROM $wpdb->posts AS posts
INNER JOIN $wpdb->postmeta AS post_lat ON post_lat.post_id = posts.ID AND post_lat.meta_key = 'wpsl_lat'
INNER JOIN $wpdb->postmeta AS post_lng ON post_lng.post_id = posts.ID AND post_lng.meta_key = 'wpsl_lng'
$cat_filter
WHERE posts.post_type = 'wpsl_stores'
AND posts.post_status = 'publish' $group_by $sql_sort"
);
$stores = $wpdb->get_results( $wpdb->prepare( $sql, $placeholder_values ) );
if ( $stores ) {
$store_data = apply_filters( 'wpsl_store_data', $this->get_store_meta_data( $stores ) );
} else {
$store_data = apply_filters( 'wpsl_no_results_sql', '' );
}
return $store_data;
}
/**
* Get the post meta data for the selected stores.
*
* @since 2.0.0
* @param object $stores
* @return array $all_stores The stores that fall within the selected range with the post meta data.
*/
public function get_store_meta_data( $stores ) {
global $wpsl_settings, $wpsl;
$all_stores = array();
// Get the list of store fields that we need to filter out of the post meta data.
$meta_field_map = $this->frontend_meta_fields();
foreach ( $stores as $store_key => $store ) {
// If WPML is active try to get the id of the translated page.
if ( $wpsl->i18n->wpml_exists() ) {
$store->ID = $wpsl->i18n->maybe_get_wpml_id( $store->ID );
if ( !$store->ID ) {
continue;
}
}
// Get the post meta data for each store that was within the range of the search radius.
$custom_fields = get_post_custom( $store->ID );
foreach ( $meta_field_map as $meta_key => $meta_value ) {
if ( isset( $custom_fields[$meta_key][0] ) ) {
if ( ( isset( $meta_value['type'] ) ) && ( !empty( $meta_value['type'] ) ) ) {
$meta_type = $meta_value['type'];
} else {
$meta_type = '';
}
// If we need to hide the opening hours, and the current meta type is set to hours we skip it.
if ( $wpsl_settings['hide_hours'] && $meta_type == 'hours' ) {
continue;
}
// Make sure the data is safe to use on the frontend and in the format we expect it to be.
switch ( $meta_type ) {
case 'numeric':
$meta_data = ( is_numeric( $custom_fields[$meta_key][0] ) ) ? $custom_fields[$meta_key][0] : 0 ;
break;
case 'email':
$meta_data = sanitize_email( $custom_fields[$meta_key][0] );
break;
case 'url':
$meta_data = esc_url( $custom_fields[$meta_key][0] );
break;
case 'hours':
$meta_data = $this->get_opening_hours( $custom_fields[$meta_key][0], apply_filters( 'wpsl_hide_closed_hours', false ) );
break;
case 'wp_editor':
case 'textarea':
$meta_data = wp_kses_post( wpautop( $custom_fields[$meta_key][0] ) );
break;
case 'text':
default:
$meta_data = sanitize_text_field( stripslashes( $custom_fields[$meta_key][0] ) );
break;
}
$store_meta[$meta_value['name']] = $meta_data;
} else {
$store_meta[$meta_value['name']] = '';
}
/*
* Include the post content if the "More info" option is enabled on the settings page,
* or if $include_post_content is set to true through the 'wpsl_include_post_content' filter.
*/
if ( ( $wpsl_settings['more_info'] && $wpsl_settings['more_info_location'] == 'store listings' ) || apply_filters( 'wpsl_include_post_content', false ) ) {
$page_object = get_post( $store->ID );
// Check if we need to strip the shortcode from the post content.
if ( apply_filters( 'wpsl_strip_content_shortcode', true ) ) {
$post_content = strip_shortcodes( $page_object->post_content );
} else {
$post_content = $page_object->post_content;
}
$store_meta['description'] = apply_filters( 'the_content', $post_content );
}
$store_meta['store'] = get_the_title( $store->ID );
$store_meta['thumb'] = $this->get_store_thumb( $store->ID, $store_meta['store'] );
$store_meta['id'] = $store->ID;
if ( !$wpsl_settings['hide_distance'] ) {
$store_meta['distance'] = round( $store->distance, 1 );
}
if ( $wpsl_settings['permalinks'] ) {
$store_meta['permalink'] = get_permalink( $store->ID );
}
}
$all_stores[] = apply_filters( 'wpsl_store_meta', $store_meta, $store->ID );
}
return $all_stores;
}
/**
* The store meta fields that are included in the json output.
*
* The wpsl_ is the name in db, the name value is used as the key in the json output.
*
* The type itself is used to determine how the value should be sanitized.
* Text will go through sanitize_text_field, email through sanitize_email and so on.
*
* If no type is set it will default to sanitize_text_field.
*
* @since 2.0.0
* @return array $store_fields The names of the meta fields used by the store
*/
public function frontend_meta_fields() {
$store_fields = array(
'wpsl_address' => array(
'name' => 'address'
),
'wpsl_address2' => array(
'name' => 'address2'
),
'wpsl_city' => array(
'name' => 'city'
),
'wpsl_state' => array(
'name' => 'state'
),
'wpsl_zip' => array(
'name' => 'zip'
),
'wpsl_country' => array(
'name' => 'country'
),
'wpsl_lat' => array(
'name' => 'lat',
'type' => 'numeric'
),
'wpsl_lng' => array(
'name' => 'lng',
'type' => 'numeric'
),
'wpsl_phone' => array(
'name' => 'phone'
),
'wpsl_fax' => array(
'name' => 'fax'
),
'wpsl_email' => array(
'name' => 'email',
'type' => 'email'
),
'wpsl_hours' => array(
'name' => 'hours',
'type' => 'hours'
),
'wpsl_url' => array(
'name' => 'url',
'type' => 'url'
)
);
return apply_filters( 'wpsl_frontend_meta_fields', $store_fields );
}
/**
* Get the store thumbnail.
*
* @since 2.0.0
* @param string $post_id The post id of the store
* @param string $store_name The name of the store
* @return void|string $thumb The html img tag
*/
public function get_store_thumb( $post_id, $store_name ) {
$attr = array(
'class' => 'wpsl-store-thumb',
'alt' => $store_name
);
$thumb = get_the_post_thumbnail( $post_id, $this->get_store_thumb_size(), apply_filters( 'wpsl_thumb_attr', $attr ) );
return $thumb;
}
/**
* Get the store thumbnail size.
*
* @since 2.0.0
* @return array $size The thumb format
*/
public function get_store_thumb_size() {
$size = apply_filters( 'wpsl_thumb_size', array( 45, 45 ) );
return $size;
}
/**
* Get the opening hours in the correct format.
*
* Either convert the hour values that are set through
* a dropdown to a table, or wrap the textarea input in a <p>.
*
* Note: The opening hours can only be set in the textarea format by users who upgraded from 1.x.
*
* @since 2.0.0
* @param array|string $hours The opening hours
* @param boolean $hide_closed Hide the days were the location is closed
* @return string $hours The formated opening hours
*/
public function get_opening_hours( $hours, $hide_closed ) {
$hours = maybe_unserialize( $hours );
/*
* If the hours are set through the dropdown then we create a table for the opening hours.
* Otherwise we output the data entered in the textarea.
*/
if ( is_array( $hours ) ) {
$hours = $this->create_opening_hours_tabel( $hours, $hide_closed );
} else {
$hours = wp_kses_post( wpautop( $hours ) );
}
return $hours;
}
/**
* Create a table for the opening hours.
*
* @since 2.0.0
* @todo add schema.org support.
* @param array $hours The opening hours
* @param boolean $hide_closed Hide the days where the location is closed
* @return string $hour_table The opening hours sorted in a table
*/
public function create_opening_hours_tabel( $hours, $hide_closed ) {
$opening_days = wpsl_get_weekdays();
// Make sure that we have actual opening hours, and not every day is empty.
if ( $this->not_always_closed( $hours ) ) {
$hour_table = '<table role="presentation" class="wpsl-opening-hours">';
foreach ( $opening_days as $index => $day ) {
$i = 0;
$hour_count = count( $hours[$index] );
// If we need to hide days that are set to closed then skip them.
if ( $hide_closed && !$hour_count ) {
continue;
}
$hour_table .= '<tr>';
$hour_table .= '<td>' . esc_html( $day ) . '</td>';
// If we have opening hours we show them, otherwise just show 'Closed'.
if ( $hour_count > 0 ) {
$hour_table .= '<td>';
while ( $i < $hour_count ) {
$hour = explode( ',', $hours[$index][$i] );
$hour_table .= '<time>' . esc_html( $hour[0] ) . ' - ' . esc_html( $hour[1] ) . '</time>';
$i++;
}
$hour_table .= '</td>';
} else {
$hour_table .= '<td>' . __( 'Closed', 'wpsl' ) . '</td>';
}
$hour_table .= '</tr>';
}
$hour_table .= '</table>';
return $hour_table;
}
}
/**
* Create the wpsl post type output.
*
* If you want to create a custom template you need to
* create a single-wpsl_stores.php file in your theme folder.
* You can see an example here https://wpstorelocator.co/document/create-custom-store-page-template/
*
* @since 2.0.0
* @param string $content
* @return string $content
*/
public function cpt_template( $content ) {
global $wpsl_settings, $post;
$skip_cpt_template = apply_filters( 'wpsl_skip_cpt_template', false );
if ( isset( $post->post_type ) && $post->post_type == 'wpsl_stores' && is_single() && in_the_loop() && !$skip_cpt_template ) {
array_push( $this->load_scripts, 'wpsl_base' );
$content .= '[wpsl_map]';
$content .= '[wpsl_address]';
if ( !$wpsl_settings['hide_hours'] ) {
$content .= '[wpsl_hours]';
}
}
return $content;
}
/**
* Handle the [wpsl] shortcode attributes.
*
* @since 2.1.1
* @param array $atts Shortcode attributes
*/
public function check_sl_shortcode_atts( $atts ) {
/*
* Use a custom start location?
*
* If the provided location fails to geocode,
* then the start location from the settings page is used.
*/
if ( isset( $atts['start_location'] ) && $atts['start_location'] ) {
$start_latlng = wpsl_check_latlng_transient( $atts['start_location'] );
if ( isset( $start_latlng ) && $start_latlng ) {
$this->sl_shortcode_atts['js']['startLatlng'] = $start_latlng;
}
}
if ( isset( $atts['auto_locate'] ) && $atts['auto_locate'] ) {
$this->sl_shortcode_atts['js']['autoLocate'] = ( $atts['auto_locate'] == 'true' ) ? 1 : 0;
}
// Change the category slugs into category ids.
if ( isset( $atts['category'] ) && $atts['category'] ) {
$term_ids = wpsl_get_term_ids( $atts['category'] );
if ( $term_ids ) {
$this->sl_shortcode_atts['js']['categoryIds'] = implode( ',', $term_ids );
}
}
if ( isset( $atts['category_selection'] ) && $atts['category_selection'] ) {
$this->sl_shortcode_atts['category_selection'] = wpsl_get_term_ids( $atts['category_selection'] );
}
if ( isset( $atts['category_filter_type'] ) && in_array( $atts['category_filter_type'], array( 'dropdown', 'checkboxes' ) ) ) {
$this->sl_shortcode_atts['category_filter_type'] = $atts['category_filter_type'];
}
if ( isset( $atts['checkbox_columns'] ) && is_numeric( $atts['checkbox_columns'] ) ) {
$this->sl_shortcode_atts['checkbox_columns'] = $atts['checkbox_columns'];
}
if ( isset( $atts['map_type'] ) && array_key_exists( $atts['map_type'], wpsl_get_map_types() ) ) {
$this->sl_shortcode_atts['js']['mapType'] = $atts['map_type'];
}
if ( isset( $atts['start_marker'] ) && $atts['start_marker'] ) {
$this->sl_shortcode_atts['js']['startMarker'] = $atts['start_marker'] . '@2x.png';
}
if ( isset( $atts['store_marker'] ) && $atts['store_marker'] ) {
$this->sl_shortcode_atts['js']['storeMarker'] = $atts['store_marker'] . '@2x.png';
}
}
/**
* Handle the [wpsl] shortcode.
*
* @since 1.0.0
* @param array $atts Shortcode attributes
* @return string $output The wpsl template
*/
public function show_store_locator( $atts ) {
global $wpsl, $wpsl_settings;
$atts = shortcode_atts( array(
'template' => $wpsl_settings['template_id'],
'start_location' => '',
'auto_locate' => '',
'category' => '',
'category_selection' => '',
'category_filter_type' => '',
'checkbox_columns' => '3',
'map_type' => '',
'start_marker' => '',
'store_marker' => ''
), $atts );
$this->check_sl_shortcode_atts( $atts );
// Make sure the required scripts are included for the wpsl shortcode.
array_push( $this->load_scripts, 'wpsl_store_locator' );
$template_details = $wpsl->templates->get_template_details( $atts['template'] );
$output = include( $template_details['path'] );
return $output;
}
/**
* Handle the [wpsl_address] shortcode.
*
* @since 2.0.0
* @todo add schema.org support.
* @param array $atts Shortcode attributes
* @return void|string $output The store address
*/
public function show_store_address( $atts ) {
global $post, $wpsl_settings, $wpsl;
$atts = wpsl_bool_check( shortcode_atts( apply_filters( 'wpsl_address_shortcode_defaults', array(
'id' => '',
'name' => true,
'address' => true,
'address2' => true,
'city' => true,
'state' => true,
'zip' => true,
'country' => true,
'phone' => true,
'fax' => true,
'email' => true,
'url' => true,
'directions' => false,
'clickable_contact_details' => (bool) $wpsl_settings['clickable_contact_details']
) ), $atts ) );
if ( get_post_type() == 'wpsl_stores' ) {
if ( empty( $atts['id'] ) ) {
if ( isset( $post->ID ) ) {
$atts['id'] = $post->ID;
} else {
return;
}
}
} else if ( empty( $atts['id'] ) ) {
return __( 'If you use the [wpsl_address] shortcode outside a store page you need to set the ID attribute.', 'wpsl' );
}
$content = '<div class="wpsl-locations-details">';
if ( $atts['name'] && $name = get_the_title( $atts['id'] ) ) {
$content .= '<span><strong>' . esc_html( $name ) . '</strong></span>';
}
$content .= '<div class="wpsl-location-address">';
if ( $atts['address'] && $address = get_post_meta( $atts['id'], 'wpsl_address', true ) ) {
$content .= '<span>' . esc_html( $address ) . '</span><br/>';
}
if ( $atts['address2'] && $address2 = get_post_meta( $atts['id'], 'wpsl_address2', true ) ) {
$content .= '<span>' . esc_html( $address2 ) . '</span><br/>';
}
$address_format = explode( '_', $wpsl_settings['address_format'] );
$count = count( $address_format );
$i = 1;
// Loop over the address parts to make sure they are shown in the right order.
foreach ( $address_format as $address_part ) {
// Make sure the shortcode attribute is set to true for the $address_part, and it's not the 'comma' part.
if ( $address_part != 'comma' && $atts[$address_part] ) {
$post_meta = get_post_meta( $atts['id'], 'wpsl_' . $address_part, true );
if ( $post_meta ) {
/*
* Check if the next part of the address is set to 'comma'.
* If so add the, after the current address part, otherwise just show a space
*/
if ( isset( $address_format[$i] ) && ( $address_format[$i] == 'comma' ) ) {
$punctuation = ', ';
} else {
$punctuation = ' ';
}
// If we have reached the last item add a <br /> behind it.
$br = ( $count == $i ) ? '<br />' : '';
$content .= '<span>' . esc_html( $post_meta ) . $punctuation . '</span>' . $br;
}
}
$i++;
}
if ( $atts['country'] && $country = get_post_meta( $atts['id'], 'wpsl_country', true ) ) {
$content .= '<span>' . esc_html( $country ) . '</span>';
}
$content .= '</div>';
// If either the phone, fax, email or url is set to true, then add the wrap div for the contact details.
if ( $atts['phone'] || $atts['fax'] || $atts['email'] || $atts['url'] ) {
$phone = get_post_meta( $atts['id'], 'wpsl_phone', true );
$fax = get_post_meta( $atts['id'], 'wpsl_fax', true );
$email = get_post_meta( $atts['id'], 'wpsl_email', true );
if ( $atts['clickable_contact_details'] ) {
$contact_details = array(
'phone' => '<a href="tel:' . esc_attr( $phone ) . '">' . esc_html( $phone ) . '</a>',
'fax' => '<a href="tel:' . esc_attr( $fax ) . '">' . esc_html( $fax ) . '</a>',
'email' => '<a href="mailto:' . sanitize_email( $email ) . '">' . sanitize_email( $email ) . '</a>'
);
} else {
$contact_details = array(
'phone' => esc_html( $phone ),
'fax' => esc_html( $fax ),
'email' => sanitize_email( $email )
);
}
$content .= '<div class="wpsl-contact-details">';
if ( $atts['phone'] && $phone ) {
$content .= esc_html( $wpsl->i18n->get_translation( 'phone_label', __( 'Phone', 'wpsl' ) ) ) . ': <span>' . $contact_details['phone'] . '</span><br/>';
}
if ( $atts['fax'] && $fax ) {
$content .= esc_html( $wpsl->i18n->get_translation( 'fax_label', __( 'Fax', 'wpsl' ) ) ) . ': <span>' . $contact_details['fax'] . '</span><br/>';
}
if ( $atts['email'] && $email ) {
$content .= esc_html( $wpsl->i18n->get_translation( 'email_label', __( 'Email', 'wpsl' ) ) ) . ': <span>' . $contact_details['email'] . '</span><br/>';
}
if ( $atts['url'] && $store_url = get_post_meta( $atts['id'], 'wpsl_url', true ) ) {
$new_window = ( $wpsl_settings['new_window'] ) ? 'target="_blank"' : '' ;
$content .= esc_html( $wpsl->i18n->get_translation( 'url_label', __( 'Url', 'wpsl' ) ) ) . ': <a ' . $new_window . ' href="' . esc_url( $store_url ) . '">' . esc_url( $store_url ) . '</a><br/>';
}
$content .= '</div>';
}
if ( $atts['directions'] && $address ) {
if ( $wpsl_settings['new_window'] ) {
$new_window = ' target="_blank"';
} else {
$new_window = '';
}
$content .= '<div class="wpsl-location-directions">';
$city = get_post_meta( $atts['id'], 'wpsl_city', true );
$country = get_post_meta( $atts['id'], 'wpsl_country', true );
$destination = $address . ',' . $city . ',' . $country;
$direction_url = "https://maps.google.com/maps?saddr=&daddr=" . urlencode( $destination ) . "&travelmode=" . strtolower( $this->get_directions_travel_mode() );
$content .= '<p><a ' . $new_window . ' href="' . esc_url( $direction_url ) . '">' . __( 'Directions', 'wpsl' ) . '</a></p>';
$content .= '</div>';
}
$content .= '</div>';
return $content;
}
/**
* Handle the [wpsl_hours] shortcode.
*
* @since 2.0.0
* @param array $atts Shortcode attributes
* @return void|string $output The opening hours
*/
public function show_opening_hours( $atts ) {
global $wpsl_settings, $post;
// If the hours are set to hidden on the settings page, then respect that and don't continue.
if ( $wpsl_settings['hide_hours'] ) {
return;
}
$hide_closed = apply_filters( 'wpsl_hide_closed_hours', false );
$atts = wpsl_bool_check( shortcode_atts( apply_filters( 'wpsl_hour_shortcode_defaults', array(
'id' => '',
'hide_closed' => $hide_closed
) ), $atts ) );
if ( get_post_type() == 'wpsl_stores' ) {
if ( empty( $atts['id'] ) ) {
if ( isset( $post->ID ) ) {
$atts['id'] = $post->ID;
} else {
return;
}
}
} else if ( empty( $atts['id'] ) ) {
return __( 'If you use the [wpsl_hours] shortcode outside a store page you need to set the ID attribute.', 'wpsl' );
}
$opening_hours = get_post_meta( $atts['id'], 'wpsl_hours' );
if ( $opening_hours ) {
$output = $this->get_opening_hours( $opening_hours[0], $atts['hide_closed'] );
return $output;
}
}
/**
* Handle the [wpsl_map] shortcode.
*
* @since 2.0.0
* @param array $atts Shortcode attributes
* @return string $output The html for the map
*/
public function show_store_map( $atts ) {
global $wpsl_settings, $post;
$atts = shortcode_atts( apply_filters( 'wpsl_map_shortcode_defaults', array(
'id' => '',
'category' => '',
'width' => '',
'height' => $wpsl_settings['height'],
'zoom' => $wpsl_settings['zoom_level'],
'map_type' => $wpsl_settings['map_type'],
'map_type_control' => $wpsl_settings['type_control'],
'map_style' => '',
'street_view' => $wpsl_settings['streetview'],
'scrollwheel' => $wpsl_settings['scrollwheel'],
'control_position' => $wpsl_settings['control_position']
) ), $atts );
array_push( $this->load_scripts, 'wpsl_base' );
if ( get_post_type() == 'wpsl_stores' ) {
if ( empty( $atts['id'] ) ) {
if ( isset( $post->ID ) ) {
$atts['id'] = $post->ID;
} else {
return;
}
}
} else if ( empty( $atts['id'] ) && empty( $atts['category'] ) ) {
return __( 'If you use the [wpsl_map] shortcode outside a store page, then you need to set the ID or category attribute.', 'wpsl' );
}
if ( $atts['category'] ) {
$store_ids = get_posts( array(
'numberposts' => -1,
'post_type' => 'wpsl_stores',
'post_status' => 'publish',
'tax_query' => array(
array(
'taxonomy' => 'wpsl_store_category',
'field' => 'slug',
'terms' => explode( ',', sanitize_text_field( $atts['category'] ) )
),
),
'fields' => 'ids'
) );
} else {
$store_ids = array_map( 'absint', explode( ',', $atts['id'] ) );
$id_count = count( $store_ids );
}
/*
* The location url is included if:
*
* - Multiple ids are set.
* - The category attr is set.
* - The shortcode is used on a post type other then 'wpsl_stores'. No point in showing a location
* url to the user that links back to the page they are already on.
*/
if ( $atts['category'] || isset( $id_count ) && $id_count > 1 || get_post_type() != 'wpsl_stores' && !empty( $atts['id'] ) ) {
$incl_url = true;
} else {
$incl_url = false;
}
$store_meta = array();
$i = 0;
foreach ( $store_ids as $store_id ) {
$lat = get_post_meta( $store_id, 'wpsl_lat', true );
$lng = get_post_meta( $store_id, 'wpsl_lng', true );
// Make sure the latlng is numeric before collecting the other meta data.
if ( is_numeric( $lat ) && is_numeric( $lng ) ) {
$store_meta[$i] = apply_filters( 'wpsl_cpt_info_window_meta_fields', array(
'store' => get_the_title( $store_id ),
'address' => get_post_meta( $store_id, 'wpsl_address', true ),
'address2' => get_post_meta( $store_id, 'wpsl_address2', true ),
'city' => get_post_meta( $store_id, 'wpsl_city', true ),
'state' => get_post_meta( $store_id, 'wpsl_state', true ),
'zip' => get_post_meta( $store_id, 'wpsl_zip', true ),
'country' => get_post_meta( $store_id, 'wpsl_country', true )
), $store_id );
// Grab the permalink / url if necessary.
if ( $incl_url ) {
if ( $wpsl_settings['permalinks'] ) {
$store_meta[$i]['permalink'] = get_permalink( $store_id );
} else {
$store_meta[$i]['url'] = get_post_meta( $store_id, 'wpsl_url', true );
}
}
$store_meta[$i]['lat'] = $lat;
$store_meta[$i]['lng'] = $lng;
$store_meta[$i]['id'] = $store_id;
$i++;
}
}
$output = '<div id="wpsl-base-gmap_' . self::$map_count . '" class="wpsl-gmap-canvas"></div>' . "\r\n";
// Make sure the shortcode attributes are valid.
$map_styles = $this->check_map_shortcode_atts( $atts );
if ( $map_styles ) {
if ( isset( $map_styles['css'] ) && !empty( $map_styles['css'] ) ) {
$output .= '<style>' . $map_styles['css'] . '</style>' . "\r\n";
unset( $map_styles['css'] );
}
if ( $map_styles ) {
$store_data['shortCode'] = $map_styles;
}
}
$store_data['locations'] = $store_meta;
$this->store_map_data[self::$map_count] = $store_data;
self::$map_count++;
return $output;
}
/**
* Make sure the map style shortcode attributes are valid.
*
* The values are send to wp_localize_script in add_frontend_scripts.
*
* @since 2.0.0
* @param array $atts The map style shortcode attributes
* @return array $map_atts Validated map style shortcode attributes
*/
public function check_map_shortcode_atts( $atts ) {
$map_atts = array();
if ( isset( $atts['width'] ) && is_numeric( $atts['width'] ) ) {
$width = 'width:' . $atts['width'] . 'px;';
} else {
$width = '';
}
if ( isset( $atts['height'] ) && is_numeric( $atts['height'] ) ) {
$height = 'height:' . $atts['height'] . 'px;';
} else {
$height = '';
}
if ( $width || $height ) {
$map_atts['css'] = '#wpsl-base-gmap_' . self::$map_count . ' {' . $width . $height . '}';
}
if ( isset( $atts['zoom'] ) && !empty( $atts['zoom'] ) ) {
$map_atts['zoomLevel'] = wpsl_valid_zoom_level( $atts['zoom'] );
}
if ( isset( $atts['map_type'] ) && !empty( $atts['map_type'] ) ) {
$map_atts['mapType'] = wpsl_valid_map_type( $atts['map_type'] );
}
if ( isset( $atts['map_type_control'] ) ) {
$map_atts['mapTypeControl'] = $this->shortcode_atts_boolean( $atts['map_type_control'] );
}
if ( isset( $atts['map_style'] ) && $atts['map_style'] == 'default' ) {
$map_atts['mapStyle'] = '';
}
if ( isset( $atts['street_view'] ) ) {
$map_atts['streetView'] = $this->shortcode_atts_boolean( $atts['street_view'] );
}
if ( isset( $atts['scrollwheel'] ) ) {
$map_atts['scrollWheel'] = $this->shortcode_atts_boolean( $atts['scrollwheel'] );
}
if ( isset( $atts['control_position'] ) && !empty( $atts['control_position'] ) && ( $atts['control_position'] == 'left' || $atts['control_position'] == 'right' ) ) {
$map_atts['controlPosition'] = $atts['control_position'];
}
return $map_atts;
}
/**
* Set the shortcode attribute to either 1 or 0.
*
* @since 2.0.0
* @param string $att The shortcode attribute val
* @return int $att_val Either 1 or 0
*/
public function shortcode_atts_boolean( $att ) {
if ( $att === 'true' || absint( $att ) ) {
$att_val = 1;
} else {
$att_val = 0;
}
return $att_val;
}
/**
* Make sure the filter contains a valid value, otherwise use the default value.
*
* @since 2.0.0
* @param array $args The values used in the SQL query to find nearby locations
* @param string $filter The name of the filter
* @return string $filter_value The filter value
*/
public function check_store_filter( $args, $filter ) {
if ( isset( $args[$filter] ) && absint( $args[$filter] ) && $this->check_allowed_filter_value( $args, $filter ) ) {
$filter_value = $args[$filter];
} else {
$filter_value = $this->get_default_filter_value( $filter );
}
return $filter_value;
}
/**
* Make sure the used filter value isn't bigger
* then the value that's set on the settings page.
*
* @since 2.2.9
* @param array $args The values used in the SQL query to find nearby locations
* @param string $filter The name of the filter
* @return bool $allowed True if the value is equal or smaller then the value from the settings page
*/
public function check_allowed_filter_value( $args, $filter ) {
global $wpsl_settings;
$allowed = false;
$max_filter_val = max( explode(',', str_replace( array( '[',']' ), '', $wpsl_settings[$filter] ) ) );
if ( (int) $args[$filter] <= (int) $max_filter_val ) {
$allowed = true;
}
return $allowed;
}
/**
* Get the default selected value for a dropdown.
*
* @since 1.0.0
* @param string $type The request list type
* @return string $response The default list value
*/
public function get_default_filter_value( $type ) {
$settings = get_option( 'wpsl_settings' );
$list_values = explode( ',', $settings[$type] );
foreach ( $list_values as $k => $list_value ) {
// The default radius has a [] wrapped around it, so we check for that and filter out the [].
if ( strpos( $list_value, '[' ) !== false ) {
$response = filter_var( $list_value, FILTER_SANITIZE_NUMBER_INT );
break;
}
}
return $response;
}
/**
* Check if we have a opening day that has an value, if not they are all set to closed.
*
* @since 2.0.0
* @param array $opening_hours The opening hours
* @return boolean True if a day is found that isn't empty
*/
public function not_always_closed( $opening_hours ) {
foreach ( $opening_hours as $hours => $hour ) {
if ( !empty( $hour ) ) {
return true;
}
}
}
/**
* Create the css rules based on the height / max-width that is set on the settings page.
*
* @since 1.0.0
* @return string $css The custom css rules
*/
public function get_custom_css() {
global $wpsl_settings;
$thumb_size = $this->get_store_thumb_size();
$css = '<style>' . "\r\n";
if ( isset( $thumb_size[0] ) && is_numeric( $thumb_size[0] ) && isset( $thumb_size[1] ) && is_numeric( $thumb_size[1] ) ) {
$css .= "\t" . "#wpsl-stores .wpsl-store-thumb {height:" . esc_attr( $thumb_size[0] ) . "px !important; width:" . esc_attr( $thumb_size[1] ) . "px !important;}" . "\r\n";
}
if ( $wpsl_settings['template_id'] == 'below_map' && $wpsl_settings['listing_below_no_scroll'] ) {
$css .= "\t" . "#wpsl-gmap {height:" . esc_attr( $wpsl_settings['height'] ) . "px !important;}" . "\r\n";
$css .= "\t" . "#wpsl-stores, #wpsl-direction-details {height:auto !important;}";
} else {
$css .= "\t" . "#wpsl-stores, #wpsl-direction-details, #wpsl-gmap {height:" . esc_attr( $wpsl_settings['height'] ) . "px !important;}" . "\r\n";
}
/*
* If the category dropdowns are enabled then we make it
* the same width as the search input field.
*/
if ( $wpsl_settings['category_filter'] && $wpsl_settings['category_filter_type'] == 'dropdown' || isset( $this->sl_shortcode_atts['category_filter_type'] ) && $this->sl_shortcode_atts['category_filter_type'] == 'dropdown' ) {
$cat_elem = ',#wpsl-category .wpsl-dropdown';
} else {
$cat_elem = '';
}
$css .= "\t" . "#wpsl-gmap .wpsl-info-window {max-width:" . esc_attr( $wpsl_settings['infowindow_width'] ) . "px !important;}" . "\r\n";
$css .= "\t" . ".wpsl-input label, #wpsl-radius label, #wpsl-category label {width:" . esc_attr( $wpsl_settings['label_width'] ) . "px;}" . "\r\n";
$css .= "\t" . "#wpsl-search-input " . $cat_elem . " {width:" . esc_attr( $wpsl_settings['search_width'] ) . "px;}" . "\r\n";
$css .= '</style>' . "\r\n";
return $css;
}
/**
* Collect the CSS classes that are placed on the outer store locator div.
*
* @since 2.0.0
* @return string $classes The custom CSS rules
*/
public function get_css_classes() {
global $wpsl_settings;
$classes = array();
if ( $wpsl_settings['category_filter'] && $wpsl_settings['results_dropdown'] && !$wpsl_settings['radius_dropdown'] ) {
$classes[] = 'wpsl-cat-results-filter';
} else if ( $wpsl_settings['category_filter'] && ( $wpsl_settings['results_dropdown'] || $wpsl_settings['radius_dropdown'] ) ) {
$classes[] = 'wpsl-filter';
}
// checkboxes class toevoegen?
if ( !$wpsl_settings['category_filter'] && !$wpsl_settings['results_dropdown'] && !$wpsl_settings['radius_dropdown'] ) {
$classes[] = 'wpsl-no-filters';
}
if ( $wpsl_settings['category_filter'] && $wpsl_settings['category_filter_type'] == 'checkboxes' ) {
$classes[] = 'wpsl-checkboxes-enabled';
}
if ( $wpsl_settings['results_dropdown'] && !$wpsl_settings['category_filter'] && !$wpsl_settings['radius_dropdown'] ) {
$classes[] = 'wpsl-results-only';
}
// Adjust the styling of the store locator for the default WP 5.0 theme.
if ( get_option( 'template' ) === 'twentynineteen' ) {
$classes[] = 'wpsl-twentynineteen';
}
$classes = apply_filters( 'wpsl_template_css_classes', $classes );
if ( !empty( $classes ) ) {
return join( ' ', $classes );
}
}
/**
* Create a dropdown list holding the search radius or
* max search results options.
*
* @since 1.0.0
* @param string $list_type The name of the list we need to load data for
* @return string $dropdown_list A list with the available options for the dropdown list
*/
public function get_dropdown_list( $list_type ) {
global $wpsl_settings;
$dropdown_list = '';
$settings = explode( ',', $wpsl_settings[$list_type] );
// Only show the distance unit if we are dealing with the search radius.
if ( $list_type == 'search_radius' ) {
$distance_unit = ' '. esc_attr( wpsl_get_distance_unit() );
} else {
$distance_unit = '';
}
foreach ( $settings as $index => $setting_value ) {
// The default radius has a [] wrapped around it, so we check for that and filter out the [].
if ( strpos( $setting_value, '[' ) !== false ) {
$setting_value = filter_var( $setting_value, FILTER_SANITIZE_NUMBER_INT );
$selected = 'selected="selected" ';
} else {
$selected = '';
}
$dropdown_list .= '<option ' . $selected . 'value="'. absint( $setting_value ) .'">'. absint( $setting_value ) . $distance_unit .'</option>';
}
return $dropdown_list;
}
/**
* Check if we need to use a dropdown or checkboxes
* to filter the search results by categories.
*
* @since 2.2.10
* @return bool $use_filter
*/
public function use_category_filter() {
global $wpsl_settings;
$use_filter = false;
// Is a filter type set through the shortcode, or is the filter option enable on the settings page?
if ( isset( $this->sl_shortcode_atts['category_filter_type'] ) || $wpsl_settings['category_filter'] ) {
$use_filter = true;
}
return $use_filter;
}
/**
* Create the category filter.
*
* @todo create another func that accepts a meta key param to generate
* a dropdown with unique values. So for example create_filter( 'restaurant' ) will output a
* filter with all restaurant types. This can be used in a custom theme template.
*
* @since 2.0.0
* @return string|void $category The HTML for the category dropdown, or nothing if no terms exist.
*/
public function create_category_filter() {
global $wpsl, $wpsl_settings;
/*
* If the category attr is set on the wpsl shortcode, then
* there is no need to ouput an extra category dropdown.
*/
if ( isset( $this->sl_shortcode_atts['js']['categoryIds'] ) ) {
return;
}
$terms = get_terms( 'wpsl_store_category' );
if ( count( $terms ) > 0 ) {
// Either use the shortcode atts filter type or the one from the settings page.
if ( isset( $this->sl_shortcode_atts['category_filter_type'] ) ) {
$filter_type = $this->sl_shortcode_atts['category_filter_type'];
} else {
$filter_type = $wpsl_settings['category_filter_type'];
}
// Check if we need to show the filter as checkboxes or a dropdown list
if ( $filter_type == 'checkboxes' ) {
if ( isset( $this->sl_shortcode_atts['checkbox_columns'] ) ) {
$checkbox_columns = absint( $this->sl_shortcode_atts['checkbox_columns'] );
}
if ( isset( $checkbox_columns ) && $checkbox_columns ) {
$column_count = $checkbox_columns;
} else {
$column_count = 3;
}
$category = '<ul id="wpsl-checkbox-filter" class="wpsl-checkbox-' . $column_count . '-columns">';
foreach ( $terms as $term ) {
$category .= '<li>';
$category .= '<label>';
$category .= '<input type="checkbox" value="' . esc_attr( $term->term_id ) . '" ' . $this->set_selected_category( $filter_type, $term->term_id ) . ' />';
$category .= esc_html( $term->name );
$category .= '</label>';
$category .= '</li>';
}
$category .= '</ul>';
} else {
$category = '<div id="wpsl-category">' . "\r\n";
$category .= '<label for="wpsl-category-list">' . esc_html( $wpsl->i18n->get_translation( 'category_label', __( 'Category', 'wpsl' ) ) ) . '</label>' . "\r\n";
$args = apply_filters( 'wpsl_dropdown_category_args', array(
'show_option_none' => $wpsl->i18n->get_translation( 'category_default_label', __( 'Any', 'wpsl' ) ),
'option_none_value' => '0',
'orderby' => 'NAME',
'order' => 'ASC',
'echo' => 0,
'selected' => $this->set_selected_category( $filter_type ),
'hierarchical' => 1,
'name' => 'wpsl-category',
'id' => 'wpsl-category-list',
'class' => 'wpsl-dropdown',
'taxonomy' => 'wpsl_store_category',
'hide_if_empty' => true
)
);
$category .= wp_dropdown_categories( $args );
$category .= '</div>' . "\r\n";
}
return $category;
}
}
/**
* Set the selected category item.
*
* @since 2.1.2
* @param string $filter_type The type of filter being used ( dropdown or checkbox )
* @param int|string $term_id The term id ( checkbox only )
* @return string|void $category The ID of the selected option, or checked='checked' if it's for a checkbox
*/
public function set_selected_category( $filter_type, $term_id = '' ) {
$selected_id = '';
// Check if the ID for the selected cat is either passed through the widget, or shortcode
if ( isset( $_REQUEST['wpsl-widget-categories'] ) ) {
$selected_id = absint( $_REQUEST['wpsl-widget-categories'] );
} else if ( isset( $this->sl_shortcode_atts['category_selection'] ) ) {
/*
* When the term_id is set, then it's a checkbox.
*
* Otherwise select the first value from the provided list since
* multiple selections are not supported in dropdowns.
*/
if ( $term_id ) {
// Check if the passed term id exists in the set shortcode value.
$key = array_search( $term_id, $this->sl_shortcode_atts['category_selection'] );
if ( $key !== false ) {
$selected_id = $this->sl_shortcode_atts['category_selection'][$key];
}
} else {
$selected_id = $this->sl_shortcode_atts['category_selection'][0];
}
}
if ( $selected_id ) {
/*
* Based on the filter type, either return the ID of the selected category,
* or check if the checkbox needs to be set to checked="checked".
*/
if ( $filter_type == 'dropdown' ) {
return $selected_id;
} else {
return checked( $selected_id, $term_id, false );
}
}
}
/**
* Create a filename with @2x in it for the selected marker color.
*
* So when a user selected green.png in the admin panel. The JS on the front-end will end up
* loading green@2x.png to provide support for retina compatible devices.
*
* @since 1.0.0
* @param string $filename The name of the seleted marker
* @return string $filename The filename with @2x added to the end
*/
public function create_retina_filename( $filename ) {
$filename = explode( '.', $filename );
$filename = $filename[0] . '@2x.' . $filename[1];
return $filename;
}
/**
* Get the default values for the max_results and the search_radius dropdown.
*
* @since 1.0.2
* @return array $output The default dropdown values
*/
public function get_dropdown_defaults() {
global $wpsl_settings;
$required_defaults = array(
'max_results',
'search_radius'
);
// Strip out the default values that are wrapped in [].
foreach ( $required_defaults as $required_default ) {
preg_match_all( '/\[([0-9]+?)\]/', $wpsl_settings[$required_default], $match, PREG_PATTERN_ORDER );
$output[$required_default] = ( isset( $match[1][0] ) ) ? $match[1][0] : '25';
}
return $output;
}
/**
* Load the required css styles.
*
* @since 2.0.0
* @return void
*/
public function add_frontend_styles() {
global $wpsl_settings;
/**
* Check if we need to deregister other Google Maps scripts loaded
* by other plugins, or the current theme?
*
* This in some cases can break the store locator map.
*/
if ( $wpsl_settings['deregister_gmaps'] ) {
wpsl_deregister_other_gmaps();
}
$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
wp_enqueue_style( 'wpsl-styles', WPSL_URL . 'css/styles'. $min .'.css', '', WPSL_VERSION_NUM );
}
/**
* Get the HTML for the map controls.
*
* The '' and '' code is for the icon font from fontello.com
*
* @since 2.0.0
* @return string The HTML for the map controls
*/
public function get_map_controls() {
global $wpsl_settings, $is_IE;
$classes = array();
if ( $wpsl_settings['reset_map'] ) {
$reset_button = '<div class="wpsl-icon-reset"><span></span></div>';
} else {
$reset_button = '';
}
/*
* IE messes up the top padding for the icon fonts from fontello >_<.
*
* Luckily it's the same in all IE version ( 8-11 ),
* so adjusting the padding just for IE fixes it.
*/
if ( $is_IE ) {
$classes[] = 'wpsl-ie';
}
// If the street view option is enabled, then we need to adjust the right margin for the map control div.
if ( $wpsl_settings['streetview'] ) {
$classes[] = 'wpsl-street-view-exists';
}
if ( !empty( $classes ) ) {
$class = 'class="' . join( ' ', $classes ) . '"';
} else {
$class = '';
}
$map_controls = '<div id="wpsl-map-controls" ' . $class . '>' . $reset_button . '<div class="wpsl-icon-direction"><span></span></div></div>';
return apply_filters( 'wpsl_map_controls', $map_controls );
}
/**
* The different geolocation errors.
*
* They are shown when the Geolocation API returns an error.
*
* @since 2.0.0
* @return array $geolocation_errors
*/
public function geolocation_errors() {
$geolocation_errors = array(
'denied' => __( 'The application does not have permission to use the Geolocation API.', 'wpsl' ),
'unavailable' => __( 'Location information is unavailable.', 'wpsl' ),
'timeout' => __( 'The geolocation request timed out.', 'wpsl' ),
'generalError' => __( 'An unknown error occurred.', 'wpsl' )
);
return $geolocation_errors;
}
/**
* Get the used marker properties.
*
* @since 2.1.0
* @link https://developers.google.com/maps/documentation/javascript/3.exp/reference#Icon
* @return array $marker_props The marker properties.
*/
public function get_marker_props() {
$marker_props = array(
'scaledSize' => '24,35', // 50% of the normal image to make it work on retina screens.
'origin' => '0,0',
'anchor' => '12,35'
);
/*
* If this is not defined, the url path will default to
* the url path of the WPSL plugin folder + /img/markers/
* in the wpsl-gmap.js.
*/
if ( defined( 'WPSL_MARKER_URI' ) ) {
$marker_props['url'] = WPSL_MARKER_URI;
}
return apply_filters( 'wpsl_marker_props', $marker_props );
}
/**
* Get the used travel direction mode.
*
* @since 2.2.8
* @return string $travel_mode The used travel mode for the travel direcions
*/
public function get_directions_travel_mode() {
$default = 'driving';
$travel_mode = apply_filters( 'wpsl_direction_travel_mode', $default );
$allowed_modes = array( 'driving', 'bicycling', 'transit', 'walking' );
if ( !in_array( $travel_mode, $allowed_modes ) ) {
$travel_mode = $default;
}
return strtoupper( $travel_mode );
}
/**
* Get the map tab anchors.
*
* If the wpsl/wpsl_map shortcode is used in one or more tabs,
* then a JS fix ( the fixGreyTabMap function ) needs to run
* to make sure the map doesn't turn grey.
*
* For the fix to work need to know the used anchor(s).
*
* @since 2.2.10
* @return string|array $map_tab_anchor One or more anchors used to show the map(s)
*/
public function get_map_tab_anchor() {
$map_tab_anchor = apply_filters( 'wpsl_map_tab_anchor', 'wpsl-map-tab' );
return $map_tab_anchor;
}
/**
* Load the required JS scripts.
*
* @since 1.0.0
* @return void
*/
public function add_frontend_scripts() {
global $wpsl_settings, $wpsl, $post;
// Only load the required js files on the store locator page or individual store pages.
if ( empty( $this->load_scripts ) ) {
return;
}
$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
$dropdown_defaults = $this->get_dropdown_defaults();
/**
* Check if we need to deregister other Google Maps scripts loaded
* by other plugins, or the current theme?
*
* This in some cases can break the store locator map.
*/
if ( $wpsl_settings['deregister_gmaps'] ) {
wpsl_deregister_other_gmaps();
}
if ( !function_exists( 'BorlabsCookieHelper' ) ) {
wp_enqueue_script( 'wpsl-gmap', ( 'https://maps.google.com/maps/api/js' . wpsl_get_gmap_api_params( 'browser_key' ) . '' ), '', null, true );
} else {
if ( !$wpsl_settings['delay_loading']
||
(
stripos( $post->post_content, '[borlabs_cookie_blocked_content type="wpstorelocator"' ) === false
&&
stripos( $post->post_content, '[borlabs-cookie id="wpstorelocator" type="content-blocker"' ) === false
)
) {
wp_enqueue_script( 'wpsl-gmap', ( 'https://maps.google.com/maps/api/js' . wpsl_get_gmap_api_params( 'browser_key' ) . '' ), '', null, true );
}
}
$base_settings = array(
'storeMarker' => $this->create_retina_filename( $wpsl_settings['store_marker'] ),
'mapType' => $wpsl_settings['map_type'],
'mapTypeControl' => $wpsl_settings['type_control'],
'zoomLevel' => $wpsl_settings['zoom_level'],
'startLatlng' => $wpsl_settings['start_latlng'],
'autoZoomLevel' => $wpsl_settings['auto_zoom_level'],
'scrollWheel' => $wpsl_settings['scrollwheel'],
'controlPosition' => $wpsl_settings['control_position'],
'url' => WPSL_URL,
'markerIconProps' => $this->get_marker_props(),
'storeUrl' => $wpsl_settings['store_url'],
'maxDropdownHeight' => apply_filters( 'wpsl_max_dropdown_height', 300 ),
'enableStyledDropdowns' => apply_filters( 'wpsl_enable_styled_dropdowns', true ),
'mapTabAnchor' => $this->get_map_tab_anchor(),
'mapTabAnchorReturn' => apply_filters( 'wpsl_map_tab_anchor_return', false ),
'gestureHandling' => apply_filters( 'wpsl_gesture_handling', 'auto' ),
'directionsTravelMode' => $this->get_directions_travel_mode(),
'runFitBounds' => $wpsl_settings['run_fitbounds']
);
$locator_map_settings = array(
'startMarker' => $this->create_retina_filename( $wpsl_settings['start_marker'] ),
'markerClusters' => $wpsl_settings['marker_clusters'],
'streetView' => $wpsl_settings['streetview'],
'autoComplete' => $wpsl_settings['autocomplete'],
'autoLocate' => $wpsl_settings['auto_locate'],
'autoLoad' => $wpsl_settings['autoload'],
'markerEffect' => $wpsl_settings['marker_effect'],
'markerStreetView' => $wpsl_settings['marker_streetview'],
'markerZoomTo' => $wpsl_settings['marker_zoom_to'],
'newWindow' => $wpsl_settings['new_window'],
'resetMap' => $wpsl_settings['reset_map'],
'directionRedirect' => $wpsl_settings['direction_redirect'],
'phoneUrl' => $wpsl_settings['phone_url'],
'clickableDetails' => $wpsl_settings['clickable_contact_details'],
'moreInfoLocation' => $wpsl_settings['more_info_location'],
'mouseFocus' => $wpsl_settings['mouse_focus'],
'templateId' => $wpsl_settings['template_id'],
'maxResults' => $dropdown_defaults['max_results'],
'searchRadius' => $dropdown_defaults['search_radius'],
'distanceUnit' => wpsl_get_distance_unit(),
'geoLocationTimeout' => apply_filters( 'wpsl_geolocation_timeout', 7500 ),
'ajaxurl' => wpsl_get_ajax_url(),
'mapControls' => $this->get_map_controls()
);
/*
* If no results are found then by default it will just show the
* "No results found" text. This filter makes it possible to show
* a custom HTML block instead of the "No results found" text.
*/
$no_results_msg = apply_filters( 'wpsl_no_results', '' );
if ( $no_results_msg ) {
$locator_map_settings['noResults'] = $no_results_msg;
}
/**
* If enabled, include the component filter settings.
* @todo see https://developers.google.com/maps/documentation/javascript/releases#327
* See https://developers.google.com/maps/documentation/javascript/geocoding#ComponentFiltering
*/
if ( $wpsl_settings['api_region'] && $wpsl_settings['api_geocode_component'] ) {
$geocode_components = array();
$geocode_components['country'] = strtoupper( $wpsl_settings['api_region'] );
if ( $wpsl_settings['force_postalcode'] ) {
$geocode_components['postalCode'] = '';
}
$locator_map_settings['geocodeComponents'] = apply_filters( 'wpsl_geocode_components', $geocode_components );
}
/**
* Reduce the requested data fields with each autocomplete API call.
*
* You can see the supported fields here https://developers.google.com/maps/documentation/javascript/reference/places-service#PlaceResult
* and other possible options to target here https://developers.google.com/maps/documentation/javascript/reference/places-widget#AutocompleteOptions
*/
if ( $wpsl_settings['autocomplete'] ) {
$locator_map_settings['autoCompleteOptions'] = apply_filters( 'wpsl_autocomplete_options', array(
'fields' => array( 'geometry.location' ),
'types' => array( '(regions)' )
) );
}
// If the marker clusters are enabled, include the js file and marker settings.
if ( $wpsl_settings['marker_clusters'] ) {
wp_enqueue_script( 'wpsl-cluster', WPSL_URL . 'js/markerclusterer'. $min .'.js', array( 'wpsl-js' ), WPSL_VERSION_NUM, true ); //not minified version is in the /js folder
$base_settings['clusterZoom'] = $wpsl_settings['cluster_zoom'];
$base_settings['clusterSize'] = $wpsl_settings['cluster_size'];
$base_settings['clusterImagePath'] = 'https://cdn.rawgit.com/googlemaps/js-marker-clusterer/gh-pages/images/m';
}
// Check if we need to include the infobox script and settings.
if ( $wpsl_settings['infowindow_style'] == 'infobox' ) {
wp_enqueue_script( 'wpsl-infobox', WPSL_URL . 'js/infobox'. $min .'.js', array( 'wpsl-gmap' ), WPSL_VERSION_NUM, true ); // Not minified version is in the /js folder
$base_settings['infoWindowStyle'] = $wpsl_settings['infowindow_style'];
$base_settings = $this->get_infobox_settings( $base_settings );
}
// Include the map style.
if ( !empty( $wpsl_settings['map_style'] ) ) {
$base_settings['mapStyle'] = strip_tags( stripslashes( json_decode( $wpsl_settings['map_style'] ) ) );
}
wp_enqueue_script( 'wpsl-js', apply_filters( 'wpsl_gmap_js', WPSL_URL . 'js/wpsl-gmap'. $min .'.js' ), array( 'jquery' ), WPSL_VERSION_NUM, true );
wp_enqueue_script( 'underscore' );
// Check if we need to include all the settings and labels or just a part of them.
if ( in_array( 'wpsl_store_locator', $this->load_scripts ) ) {
$settings = wp_parse_args( $base_settings, $locator_map_settings );
$template = 'wpsl_store_locator';
$labels = array(
'preloader' => $wpsl->i18n->get_translation( 'preloader_label', __( 'Searching...', 'wpsl' ) ),
'noResults' => $wpsl->i18n->get_translation( 'no_results_label', __( 'No results found', 'wpsl' ) ),
'moreInfo' => $wpsl->i18n->get_translation( 'more_label', __( 'More info', 'wpsl' ) ),
'generalError' => $wpsl->i18n->get_translation( 'error_label', __( 'Something went wrong, please try again!', 'wpsl' ) ),
'queryLimit' => $wpsl->i18n->get_translation( 'limit_label', __( 'API usage limit reached', 'wpsl' ) ),
'directions' => $wpsl->i18n->get_translation( 'directions_label', __( 'Directions', 'wpsl' ) ),
'noDirectionsFound' => $wpsl->i18n->get_translation( 'no_directions_label', __( 'No route could be found between the origin and destination', 'wpsl' ) ),
'startPoint' => $wpsl->i18n->get_translation( 'start_label', __( 'Start location', 'wpsl' ) ),
'back' => $wpsl->i18n->get_translation( 'back_label', __( 'Back', 'wpsl' ) ),
'streetView' => $wpsl->i18n->get_translation( 'street_view_label', __( 'Street view', 'wpsl' ) ),
'zoomHere' => $wpsl->i18n->get_translation( 'zoom_here_label', __( 'Zoom here', 'wpsl' ) )
);
wp_localize_script( 'wpsl-js', 'wpslLabels', $labels );
wp_localize_script( 'wpsl-js', 'wpslGeolocationErrors', $this->geolocation_errors() );
} else {
$template = '';
$settings = $base_settings;
}
// Check if we need to overwrite JS settings that are set through the [wpsl] shortcode.
if ( $this->sl_shortcode_atts && isset( $this->sl_shortcode_atts['js'] ) ) {
foreach ( $this->sl_shortcode_atts['js'] as $shortcode_key => $shortcode_val ) {
$settings[$shortcode_key] = $shortcode_val;
}
}
wp_localize_script( 'wpsl-js', 'wpslSettings', apply_filters( 'wpsl_js_settings', $settings ) );
wpsl_create_underscore_templates( $template );
if ( !empty( $this->store_map_data ) ) {
$i = 0;
foreach ( $this->store_map_data as $map ) {
wp_localize_script( 'wpsl-js', 'wpslMap_' . $i, $map );
$i++;
}
}
}
/**
* Get the infobox settings.
*
* @since 2.0.0
* @see http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobox/docs/reference.html
* @param array $settings The plugin settings used on the front-end in js
* @return array $settings The plugin settings including the infobox settings
*/
public function get_infobox_settings( $settings ) {
$infobox_settings = apply_filters( 'wpsl_infobox_settings', array(
'infoBoxClass' => 'wpsl-infobox',
'infoBoxCloseMargin' => '2px', // The margin can be written in css style, so 2px 2px 4px 2px for top, right, bottom, left
'infoBoxCloseUrl' => '//www.google.com/intl/en_us/mapfiles/close.gif',
'infoBoxClearance' => '40,40',
'infoBoxDisableAutoPan' => 0,
'infoBoxEnableEventPropagation' => 0,
'infoBoxPixelOffset' => '-52,-45',
'infoBoxZindex' => 1500
) );
foreach ( $infobox_settings as $infobox_key => $infobox_setting ) {
$settings[$infobox_key] = $infobox_setting;
}
return $settings;
}
}
}