-
Notifications
You must be signed in to change notification settings - Fork 216
/
archive-luogo.php
executable file
·173 lines (158 loc) · 8.03 KB
/
archive-luogo.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<?php
/**
* The template for displaying archive
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
*
* @package Design_Scuole_Italia
*/
get_header();
global $luogo, $tipologia_luogo;
$mappa_primo_piano = dsi_get_option("posizione_mappa", "luoghi") === 'true' ? true : false;
?>
<main id="main-container" class="main-container redbrown">
<?php get_template_part("template-parts/common/breadcrumb"); ?>
<?php get_template_part("template-parts/hero/luoghi"); ?>
<?php
if ($mappa_primo_piano) {
// recupero la lista delle tipologie
$i = 0;
$locations = [];
$strutture_luoghi = dsi_get_option("strutture_luoghi", "luoghi");
if ($strutture_luoghi) { ?>
<section class="section bg-white section-map-wrapper">
<div class="map-aside">
<?php foreach ($strutture_luoghi as $id_tipologia_luogo) {
$tipologia_luogo = get_term_by("id", $id_tipologia_luogo, "tipologia-luogo");
if (!is_wp_error($tipologia_luogo)) {
$luoghi = get_posts("post_type=luogo&tipologia-luogo=" . $tipologia_luogo->slug . "&posts_per_page=-1&orderby=post_parent&order=ASC");
if (is_array($luoghi) && count($luoghi) > 0) {
?>
<h2 class="h3">
<?php if (is_array($luoghi) && count($luoghi) > 1) {
echo dsi_pluralize_string($tipologia_luogo->name);
} else {
echo $tipologia_luogo->name;
} ?>
</h2>
<?php
foreach ($luoghi as $luogo) {
get_template_part("template-parts/luogo/card", "ico");
}
}
}
} ?>
</div>
<div class="map-wrapper">
<div class="map" id="map"></div>
</div>
</section>
<!-- /section -->
<?php
foreach ($locations as $location_key => $value) {
foreach ($value as $place_key => $place) {
if (!$place['lat'] || !$place['lng']) {
$pos = dsi_multi_array_search($place['indirizzo'], $locations);
if ($pos) {
$locations[$pos][] = $place;
unset($locations[$location_key][$place_key]);
if (empty($locations[$location_key])) unset($locations[$location_key]);
}
}
}
}
$locations = array_reverse($locations);
$first = $locations[0];
}
?>
<script>
window.addEventListener('load', function() {
var mymap = L.map('map', {
zoomControl: true,
scrollWheelZoom: false
}).setView([<?php echo $first[0]['lat'] ?>, <?php echo $first[0]['lng'] ?>], 13);
let marker;
<?php
if (is_array($locations) && count($locations) > 0) {
// set markers is $location is not empty
$markers = [];
foreach ($locations as $location) {
$title = $links = [];
foreach ($location as $place) {
if ($place['lat'] && $place['lng']) {
$lat = $place['lat'];
$lng = $place['lng'];
$indirizzo = $place['indirizzo'];
}
$title[] = addslashes($place['title']);
$links[] = '<b><a href="' . $place['permalink'] . '">' . addslashes($place['title']) . '</a></b>';
}
$markers[] = '[' . $lat . "," . $lng . ']'; ?>
marker = L.marker([<?php echo $lat; ?>, <?php echo $lng; ?>, {
title: '<?php echo implode("-", $title); ?>'
}]).addTo(mymap);
marker.bindPopup('<?php echo implode(", ", $links) ?><br><?php echo addslashes($indirizzo); ?>');
<?php
}
} ?>
// add the OpenStreetMap tiles
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '',
maxZoom: 18,
}).addTo(mymap);
var arrayOfMarkers = [<?php echo implode(",", $markers); ?>];
var bounds = new L.LatLngBounds(arrayOfMarkers);
mymap.fitBounds(bounds);
});
</script><?php
} else {
// recupero la lista delle tipologie
$i = 0;
$strutture_luoghi = dsi_get_option("strutture_luoghi", "luoghi");
if ($strutture_luoghi) {
foreach ($strutture_luoghi as $id_tipologia_luogo) {
$tipologia_luogo = get_term_by("id", $id_tipologia_luogo, "tipologia-luogo");
if (!is_wp_error($tipologia_luogo)) {
$luoghi = get_posts("post_type=luogo&tipologia-luogo=" . $tipologia_luogo->slug . "&posts_per_page=-1&orderby=post_parent&order=ASC");
if (is_array($luoghi) && count($luoghi) > 0) {
$i++;
$classcolor = "bg-white";
if ($i % 2)
$classcolor = "bg-gray-light";
?>
<section class="section <?php echo $classcolor; ?> py-4">
<div class="container">
<?php
if (is_array($luoghi) && count($luoghi) > 0) {
?>
<div class="row variable-gutters mt-4">
<div class="col-lg-10 offset-lg-1 mb-4">
<h2 class="text-left mb-3">
<a href="<?php echo get_term_link($tipologia_luogo); ?>"><?php if (is_array($luoghi) && count($luoghi) > 1) echo dsi_pluralize_string($tipologia_luogo->name);
else echo $tipologia_luogo->name; ?></a>
</h2>
</div><!-- /col-lg-10 -->
<div class="col-lg-10 offset-lg-1">
<div class="row variable-gutters">
<?php foreach ($luoghi as $luogo) { ?>
<div class="col-lg-4 mb-4">
<?php get_template_part("template-parts/luogo/card", "ico"); ?>
</div><!-- /col-lg-4 -->
<?php } ?>
</div><!-- /row -->
</div><!-- /col-lg-9 -->
</div><!-- /row -->
<?php
}
?>
</div><!-- /container -->
</section><!-- /section -->
<?php
}
}
}
}
} ?>
</main>
<?php
get_footer();