Subversion Repositories eFlore/Applications.cel

Rev

Rev 3798 | Rev 3811 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3638 delphine 1
<!DOCTYPE html>
2
<html xmlns="https://www.w3.org/1999/xhtml">
3
	<head>
4
		<title><?php echo strip_tags( $widget['titre'] ); ?></title>
5
 
6
		<meta charset="utf-8" />
7
		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
8
		<meta http-equiv="Content-style-type" content="text/css" />
9
		<meta http-equiv="Content-script-type" content="text/javascript" />
10
		<meta http-equiv="Content-language" content="fr" />
11
 
12
		<meta name="revisit-after" content="15 days" />
13
		<meta name="robots" content="index,follow" />
14
		<meta name="author" content="Tela Botanica" />
15
		<meta name="keywords" content="Tela Botanica, CEL" />
16
		<meta name="description" content="Widgets de saisie du carnet en ligne" />
17
		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no" />
18
 
19
		<!-- OpenGraph pour Facebook, Pinterest, Google+ -->
20
		<meta property="og:type" content="website" />
21
		<meta property="og:title" content="Widgets de saisie du CeL" />
22
		<meta property="og:site_name" content="Tela Botanica" />
23
		<meta property="og:description" content="Widgets de saisie du Carnet en Ligne" />
24
		<meta property="og:image" content="https://resources.tela-botanica.org/tb/img/256x256/carre_englobant.png" />
25
		<meta property="og:image:type" content="image/png" />
26
		<meta property="og:image:width" content="256" />
27
		<meta property="og:image:height" content="256" />
28
		<meta property="og:locale" content="fr_FR" />
29
 
30
		<!-- Favicone -->
31
		<link rel="shortcut icon" type="image/x-icon" href="https://resources.tela-botanica.org/tb/img/16x16/favicon.ico" />
32
		<!-- Jquery-ui custom css-->
33
		<link href="https://www.tela-botanica.org/commun/jquery/jquery-ui/1.8.18/css/smoothness/jquery-ui-1.8.18.custom.css" rel="stylesheet" type="text/css" media="screen" />
34
		<!-- Bootstrap CSS -->
35
		<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous" />
36
		<!-- Fontawesome -->
37
		<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
38
		<!-- Carto -->
39
		<link href="<?php echo $url_base; ?>js/tb-geoloc/styles.css" rel="stylesheet" type="text/css" media="screen" />
40
		<!-- STYLE SAISIE -->
41
		<link href="<?php echo $url_base; ?>css/saisie.css" rel="stylesheet" type="text/css" media="screen" />
42
		<link href="<?php echo $url_base; ?>css/saisieSpe.css" rel="stylesheet" type="text/css" media="screen" />
43
 
44
		<!--  Google Analytics -->
45
		<?php if( $prod ): ?>
46
			<?php include "analytics.html"; ?>
47
		<?php endif; ?>
48
		<!-- <link rel="icon" type="image/x-icon" href="favicon.ico" /> -->
49
		<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
50
		<style>
3710 idir 51
			:not(.miniature).loading::after {
3638 delphine 52
				content:'';
53
				display: inline-block;
54
				background-image: url("<?php echo $url_base; ?>img/icones/chargement-image.gif");
55
				background-size: 1rem;
56
				height: 1rem;
57
				width: 1rem;
58
			}
59
		</style>
60
	</head>
61
 
62
	<body id="top" data-sq="<?php echo $url_base; ?>" data-type-loc="<?php echo $widget['type_localisation'];?>">
63
		<?php
64
			echo ( $widget['image_fond'] ) ? '<div id="image-fond" style="' . htmlspecialchars( 'background:url("' . $widget['chemin_fichiers'] . 'image_fond.' . preg_replace( '/(?:imag)?e\/?/','',$widget['image_fond']) . '") no-repeat center center;background-size:cover') . '"></div>': '';
65
		?>
66
		<div id="zone-appli" class="container" data-projet="<?php echo $widget['projet']; ?>" data-url-fichiers="<?php echo $widget['chemin_fichiers']; ?>">
67
			<div class="layout-wrapper page">
68
				<div class="row mb-3">
69
					<div class="col-md-2 col-sm-10">
70
						<img id="logo" class="mr-3" src="<?php echo htmlspecialchars( $widget['chemin_fichiers'] . 'logo.' . preg_replace( '/(?:imag)?e\/?/','', $widget['logo'] ) ); ?>" alt="logo <?php echo $widget['projet']; ?>" />
71
					</div>
72
					<div class="col-md-10 col-sm-12">
73
						<h1 id="titre-projet" class="mt-0"><?php echo ( $widget['info'] ) ? $widget['titre'] . ' <div id="info-button" class="btn btn-outline-info btn-sm border-0" data-mime-info="' . $widget['info'] . '"><i class="fas fa-info-circle"></i></div>' : $widget['titre']; ?></h1>
74
					</div>
75
				</div>
76
 
77
				<div class="row mb-3">
78
					<div class="col-md-6">
79
						<div id="description"><?php echo $widget['description']; ?></div>
80
					</div>
81
					<div class="col-md-6">
82
						<div id="aide" class="well well-lg hidden-sm-down">
83
							<h3><?php echo $aide['titre']; ?></h3>
84
							<div id="aide-txt" class="hiden-sm-down">
85
								<p><?php echo $aide['description']; ?></p>
86
							</div>
87
						</div>
88
					</div>
89
				</div>
90
 
91
				<div id="formulaire" class="row mb-3 bloc-top">
92
					<form id="form-observateur" role="form" autocomplete="on">
93
						<h2><?php echo $observateur['titre']; ?></h2>
94
						<div id="tb-observateur">
95
							<div class="navbar-default mb-3" id="tb-navbar">
96
								<div class="nav navbar-nav navbar-right row control-group">
97
									<div id="bouton-connexion" class="volet col-md-6 col-sm-8">
98
										<label for="bouton-connexion"><?php echo $observateur['compte']; ?></label>
99
										<a id="connexion" href="<?php echo $authTpl; ?>" class="btn btn-success  mr-1 mb-1" target="_blank"><?php echo $observateur['connexion']; ?></a>
100
										<a id="inscription" href="" class="btn btn-primary mr-1 mb-1" target="_blank"><?php echo $observateur['inscription']; ?></a>
101
									</div>
102
									<div id="creation-compte" class="volet col-md-6 col-sm-8">
103
										<label for="creation-compte"><?php echo $observateur['noninscription']; ?></label>
104
										<a id="bouton-anonyme" href="" class="btn btn-info mr-1 mb-1"><?php echo $observateur['nonconnexion']; ?></a>
105
									</div>
106
									<div id="utilisateur-connecte" class="volet hidden">
107
										<label for="utilisateur-connecte"><?php echo $observateur['bienvenue']; ?></label>
108
										<a href="" class="list-tool btn btn-large btn-primary volet-toggle" data-toggle="volet">
109
											<span id="nom-complet"></span> <!-- <i class="fas fa-caret-down"></i> -->
110
										</a>
111
										<div class="volet-menu hidden">
112
											<div id="profil-utilisateur">
113
												<a href="" target="_blank"><?php echo $observateur['profil']; ?></a>
114
											</div>
115
											<div id="deconnexion"><a href=""><?php echo $observateur['deconnexion']; ?></a></div>
116
										</div>
117
									</div>
118
								</div>
119
							</div>
120
						</div>
121
 
122
						<div id="identite" class="mb-3 hidden">
123
							<p id="bienvenue" class=" col-md-6 hidden font-weight-bold">
124
								Bonjour<span id="bienvenue-prenom"></span><span id="bienvenue-nom"></span>!
125
							</p>
126
							<div id="zone-courriel" class="row">
127
								<div class="control-group col-md-6">
128
									<label for="courriel" class="col-sm-8 obligatoire" title="<?php echo $observateur['courriel-title']; ?>">
129
										<i class="fa fa-envelope" aria-hidden="true"></i>
130
										<?php echo $observateur['courriel']; ?>
131
									</label>
132
									<div class="col-sm-8 mb-3">
133
										<input id="courriel" name="courriel" class="form-control" type="email" title="<?php echo $observateur['courriel-title']; ?> ">
134
										<input id="id_utilisateur" name="id_utilisateur" type="hidden">
135
									</div>
136
								</div>
137
 
138
								<div id="zone-courriel-confirmation" class="control-group col-md-6 hidden">
139
									<label for="courriel_confirmation" class="col-sm-8 obligatoire" title="<?php echo $observateur['courriel-confirmation-title']; ?>">
140
										<i class="fa fa-envelope" aria-hidden="true"></i>
141
										<?php echo $observateur['courriel-confirmation']; ?>
142
									</label>
143
									<div class="col-sm-8">
144
										<input id="courriel_confirmation" name="courriel_confirmation" class="form-control" type="email">
145
									</div>
146
								</div>
147
							</div>
148
 
149
							<div id="zone-prenom-nom" class="row hidden">
150
								<div class="control-group col-md-6">
151
									<label for="prenom" class="col-sm-8">
152
										<i class="fa fa-user" aria-hidden="true"></i>
153
										<?php echo $observateur['prenom']; ?>
154
									</label>
155
									<div class="input-group col-sm-8">
156
										<input id="prenom" name="prenom" class="form-control" type="text">
157
									</div>
158
								</div>
159
								<div class="control-group col-md-6">
160
									<label for="nom" class="col-sm-8">
161
										<i class="fa fa-user" aria-hidden="true"></i>
162
										<?php echo $observateur['nom']; ?>
163
									</label>
164
									<div class="input-group col-sm-8">
165
										<input id="nom" name="nom" class="form-control" type="text">
166
									</div>
167
								</div>
168
							</div>
169
						</div>
170
					</form>
171
 
172
					<!-- Messages d'erreur du formulaire-->
173
					<div class="zone-alerte">
174
						<div id="dialogue-bloquer-copier-coller" class="alert alert-info alert-block hidden">
175
							<a class="close">×</a>
176
							<h4 class="alert-heading"><?php echo $observateur['alertcc-title']; ?></h4>
177
							<p><?php echo $observateur['alertcc']; ?></p>
178
						</div>
179
						<div id="dialogue-utilisateur-non-identifie" class="alert alert-warning alert-block hidden">
180
							<a class="close">×</a>
181
							<h4 class="alert-heading"><?php echo $observateur['alertni-title']; ?></h4>
182
							<p><?php echo $observateur['alertni']; ?></p>
183
						</div>
184
					</div>
185
 
186
					<form id="form-observation" role="form" autocomplete="on" class="bloc-top">
187
						<h2><?php echo $observation['titre']; ?></h2>
188
						<div id="zone-observation" class="row">
189
							<div class="col-md-6">
190
 
191
								<div class="mb-3">
192
									<label for="geolocalisation" class="col-sm-8 obligatoire has-tooltip" data-toggle="tooltip" title="<?php echo $observation['geoloc-title']; ?>">
193
										<i class="fa fa-street-view" aria-hidden="true"></i>
194
										<?php echo $observation['geolocalisation']; ?>
195
									</label>
196
									<div class="control-group">
197
										<div id="geoloc-datas">
198
											<input type="hidden" id="pays" name="pays" value="" style="display:none">
199
											<input type="hidden" id="commune-nom" name="commune-nom" value="" style="display:none">
200
											<input type="hidden" id="geometry" name="geometry" value="" style="display:none">
201
											<input type="hidden" id="latitude" name="latitude" value="" style="display:none">
202
											<input type="hidden" id="longitude" name="longitude" value="" style="display:none">
203
											<input type="hidden" id="altitude" name="altitude" value="" style="display:none">
204
											<input type="hidden" id="commune-insee" name="commune-insee" value="" style="display:none">
205
											<input type="hidden" id="coord-lineaire" name="coord-lineaire" value="" style="display:none">
206
										</div>
207
										<div id="geoloc" class="col-sm-12">
208
											<tb-geolocation-element
209
												id="tb-geolocation"
210
												layer='osm'
211
												zoom_init="<?php echo ( isset($widget['localisation']['zoom']) ) ? $widget['localisation']['zoom']: '4' ;?>"
212
												lat_init="<?php echo ( isset($widget['localisation']['latitude']) ) ? $widget['localisation']['latitude']: '46.5' ;?>"
213
												lng_init="<?php echo ( isset($widget['localisation']['longitude'])) ? $widget['localisation']['longitude'] : '2.9' ;?>"
214
												marker="<?php echo ( $widget['type_localisation'] === 'point' ) ? 'true' : 'false' ;?>"
215
												polyline="<?php echo ( $widget['type_localisation'] === 'rue' ) ? 'true' : 'false' ;?>"
216
												polygon="false"
217
												show_lat_lng_elevation_inputs="<?php echo ( $widget['type_localisation'] === 'point' ) ? 'true' : 'false' ;?>"
218
												osm_class_filter=""
219
												elevation_provider="mapquest"
220
												map_quest_api_key="mG6oU5clZHRHrOSnAV0QboFI7ahnGg34"
221
											>
222
											</tb-geolocation-element>
223
										</div>
224
									</div>
225
								</div>
226
 
227
								<div class="control-group">
228
									<label for="lieudit" class="col-sm-8">
229
										<i class="fa fa-map-signs" aria-hidden="true"></i>
230
										<?php echo $observation['lieudit']; ?>
231
									</label>
232
									<div class="col-sm-8 mb-3">
233
										<input type="text" id="lieudit" name="lieudit" class="form-control has-tooltip" data-toggle="tooltip" title="<?php echo $observation['lieudit-title']; ?>">
234
									</div>
235
								</div>
236
								<div class="control-group">
237
									<label for="station" class="col-sm-8">
238
										<i class="fa fa-map-marker" aria-hidden="true"></i>
239
										<?php echo $observation['station']; ?>
240
									</label>
241
									<div class="col-sm-8 mb-3">
242
										<input type="text" id="station" name="station" class="form-control has-tooltip" data-toggle="tooltip" data-placement="bottom"title="<?php echo $observation['station-title']; ?>">
243
									</div>
244
								</div>
245
 
246
							</div>
247
 
248
							<div class="col-md-6">
249
 
250
								<div class="control-group">
251
									<label for="date_releve" class="col-sm-8 obligatoire">
252
										<i class="fa fa-calendar" aria-hidden="true"></i>
253
										<?php echo $observation['date']; ?>
254
									</label>
255
									<div class="col-sm-8 mb-3 has-tooltip" data-toggle="tooltip" title="<?php echo $observation['date-title']; ?>">
256
										<input type="date" id="date_releve" name="date_releve" class="form-control" max="<?php echo date('Y-m-d', time()); ?>" placeholder="jj/mm/aaaa" required>
257
									</div>
258
								</div>
259
 
260
								<?php if( ( $widget['type_especes'] === 'referentiel' || empty( $widget['type_especes'] ) ) && empty( $widget['referentiel'] ) ) : ?>
261
									<div class="control-group">
262
										<label for="referentiel" class="col-sm-8 obligatoire">
263
											<i class="fa fa-book" aria-hidden="true"></i>
264
											<?php echo $observation['referentiel']; ?>
265
										</label>
266
										<div class="col-sm-8 mb-3">
267
											<select id="referentiel" class="form-control custom-select has-tooltip" data-toggle="tooltip" title="<?php echo $observation['referentiel-title']; ?>">
268
												<option class="choisir" value="" selected hidden><?php echo $general['choisir']; ?></option>
3802 delphine 269
												<option value="bdtfxr" selected="selected" title="Trachéophytes de France métropolitaine et régions avoisinantes">Métropole (index réduit)</option>
3638 delphine 270
												<option value="bdtfx" title="Trachéophytes de France métropolitaine">Métropole (BDTFX)</option>
271
												<option value="bdtxa" title="Trachéophytes des Antilles">Antilles françaises (BDTXA)</option>
272
												<option value="bdtre" title="Trachéophytes de La Réunion">Réunion (BDTRE)</option>
273
												<option value="aublet" title="Guyane">Guyane (AUBLET2)</option>
274
												<option value="florical" title="Nouvelle-Calédonie">Nouvelle-Calédonie (FLORICAL)</option>
275
												<option value="isfan" title="Afrique du Nord">Afrique du Nord (ISFAN)</option>
276
												<option value="apd" title="Afrique de l'Ouest et du Centre">Afrique de l'Ouest et du Centre (APD)</option>
277
												<option value="lbf" title="Liban">Liban (LBF)</option>
3802 delphine 278
												<option value="taxreflich" title="Lichens de France">Lichens (TaxRef)</option>
279
												<option value="taxref" title="Flore de France métropolitaine et outre-mer">France (TaxRef)</option>
3638 delphine 280
												<option value="autre" title="Autre/Inconnu">Autre/Inconnu</option>
281
											</select>
282
										</div>
283
									</div>
284
								<?php else : ?>
285
									<input id="referentiel" name="referentiel" value="<?php echo $widget['referentiel']; ?>" type="hidden">
286
								<?php endif; ?>
287
 
288
								<div id="bloc-taxon" class="control-group">
289
									<?php $isTaxonListe = ( isset( $widget['especes']['taxons'] ) && count( (array) $widget['especes']['taxons'] ) > 0 ) ;?>
290
									<label <?php echo ( !$isTaxonListe ) ? 'id="taxon-autocomplete-label" for="taxon"' : 'for="taxon-liste"';?> class="col-sm-8">
291
										<i class="fa fa-leaf" aria-hidden="true"></i>
292
										<?php echo $observation['espece']; ?><?php if ( !empty( $widget['referentiel'] ) ) echo " (" . $widget['referentiel'] . ")"; ?>
293
									</label>
294
									<div class="col-sm-8 mb-3">
295
										<?php if ( $widget['type_especes'] === 'fixe' || $widget['especes']['espece_imposee'] ) : ?>
296
													<input id="taxon" name="taxon" type="text" class="form-control taxon-validation" title="" value="<?php echo $widget['especes']['nom_sci_espece_defaut']; ?>"/>
297
												</div>
298
											</div>
299
 
300
										<?php elseif ( $isTaxonListe ) : ?>
301
											<?php ksort( $widget['especes']['taxons'] ); ?>
302
													<select id="taxon-liste" name="taxon-liste" class="form-control custom-select taxon-validation has-tooltip" data-toggle="tooltip" title="<?php echo $observation['liste-espece-title']; ?>">
303
														<option class="choisir"  value="inconnue" selected hidden><?php echo $general['choisir']; ?></option>
304
														<?php foreach ($widget['especes']['taxons'] as $taxon)  : ?>
305
															<option
306
																class="nom-sci"
307
																value="<?php echo $taxon['nom_sel'];?>"
308
																title="<?php echo $taxon['nom_fr'];?>"
309
																data-num-nom-sel="<?php echo $taxon['num_nom_sel'];?>"
310
																data-nom-ret="<?php echo $taxon['nom_ret'];?>"
311
																data-num-nom-ret="<?php echo $taxon['num_nom_ret'];?>"
312
																data-nt="<?php echo $taxon['num_taxon'];?>"
313
																data-famille="<?php echo $taxon['famille'];?>"
314
															><?php echo $taxon['nom_sel'];?></option>
315
														<?php endforeach; ?>
316
														<option value="autre"><?php echo $observation['autre-espece']; ?></option>
317
													</select>
318
													<span for="taxon-liste" class="error" style="display: none;"><?php echo $observation['error-taxon'];?></span>
319
													<input id="taxon" name="taxon" class="form-control" type="hidden" />
320
												</div>
321
											</div>
322
											<div id="taxon-input-groupe" class="control-group hidden">
323
												<label id="taxon-autocomplete-label" for="taxon-autre" class="col-sm-8" title="">
324
													<i class="fab fa-pagelines" aria-hidden="true"></i>
325
													<?php echo $observation['autre-espece']; ?>
326
												</label>
327
												<div class="col-sm-8 mb-3">
328
													<input id="taxon-autre" name="taxon-autre" class="form-control has-tooltip" type="text" data-toggle="tooltip" title="<?php echo $observation['espece-title']; ?>">
329
												</div>
330
											</div>
331
										<?php else : ?>
332
													<input id="taxon" name="taxon" class="form-control taxon-validation has-tooltip" type="text" data-toggle="tooltip" title="<?php echo $observation['espece-title']; ?>">
333
													<span for="taxon" class="error" style="display: none;"><?php echo $observation['error-taxon'];?></span>
334
												</div>
335
											</div>
336
										<?php endif; ?>
337
 
338
								<div class="control-group">
339
									<label for="certitude" class="col-sm-8 obligatoire">
340
										<i class="fa fa-question" aria-hidden="true"></i>
341
										<?php echo $observation['certitude']; ?>
342
									</label>
343
									<div class="col-sm-8 mb-3">
344
										<select id="certitude" name="certitude" class="form-control custom-select has-tooltip" data-toggle="tooltip" title="<?php echo $observation['certitude-title']; ?>">
345
											<option class="aDeterminer" value="à determiner" ><?php echo $observation['certADet']; ?></option>
346
											<option class="douteux" value="douteux" ><?php echo $observation['certDout']; ?></option>
347
											<option class="certain" value="certain" selected="selected" ><?php echo $observation['certCert']; ?></option>
348
										</select>
349
									</div>
350
								</div>
351
								<!-- choix du (des) milieu(x) -->
352
								<?php if ( 0 < count( (array) $widget['milieux'] ) ) :?>
353
									<?php if ( in_array('multimilieux', $widget['milieux'] ) ) :?>
354
										<div class="multiselect list-checkbox">
355
											<label class="col-sm-8" title="<?php echo $chpsupp['select-checkboxes-texte'];?>">
356
												<i class="fa fa-street-view" aria-hidden="true"></i>
357
												<?php echo $observation['milieu']; ?>
358
											</label>
359
											<div class="control-group col-sm-8 mb-3 has-tooltip" data-toggle="tooltip" title="<?php echo $observation['liste-milieu-title']; ?>">
360
												<div class="selectBox">
361
													<select class="form-control list-checkbox custom-select" id="list-checkbox-milieu">
362
														<option><?php echo $chpsupp['select-checkboxes-texte'];?></option>
363
													</select>
364
													<div class="overSelect"></div>
365
												</div>
366
												<div class="checkboxes hidden" data-name="milieu">
367
													<?php foreach ( $widget['milieux'] as $milieu ) :?>
368
														<?php if ( 'autre' !== strtolower( $milieu ) && 'multimilieux' !== strtolower( $milieu ) ) :?>
369
															<label for="<?php echo strtolower( $milieu );?>">
370
																<input type="checkbox" id="<?php echo strtolower( $milieu );?>" name="milieu" value="<?php echo $milieu;?>" class="<?php echo strtolower( $milieu );?> milieu" data-label="<?php echo $observation['milieu']; ?>" data-name="milieu">
371
																<?php echo $milieu;?>
372
															</label>
373
														<?php endif; ?>
374
													<?php endforeach; ?>
375
													<?php if ( in_array('autre', $widget['milieux'] ) ) :?>
376
														<label for="other-milieu">
377
															<input type="checkbox" id="other-milieu" name="milieu" value="other" class="other milieu" data-label="<?php echo $observation['milieu']; ?>" data-element="checkboxes" data-name="milieu">
378
															Autre
379
														</label>
380
													<?php endif; ?>
381
												</div>
382
											</div>
383
										</div>
384
									<?php else : ?>
385
										<div class="">
386
											<label for="milieu" class="col-sm-8">
387
												<i class="fa fa-street-view" aria-hidden="true"></i>
388
												<?php echo $observation['milieu']; ?>
389
											</label>
390
											<div class="col-sm-8 mb-3">
391
												<div class="select-wrapper add-field-select">
392
													<select id="milieu" class="form-control milieu select custom-select has-tooltip mb-2" data-toggle="tooltip" title="<?php echo $observation['liste-milieu-title']; ?>" data-name="milieu" data-label="milieu">
393
														<option class="choisir" value="" selected hidden><?php echo $general['choisir']; ?></option>
394
														<?php foreach ( $widget['milieux'] as $milieu ) :?>
395
															<?php if ( 'autre' !== strtolower( $milieu ) && 'multimilieux' !== strtolower( $milieu ) ) :?>
396
																<option value="<?php echo $milieu; ?>" data-name="milieu"><?php echo $milieu; ?></option>
397
															<?php endif; ?>
398
														<?php endforeach; ?>
399
														<?php if ( in_array('autre', $widget['milieux'] ) ) :?>
400
															<option id="other-milieu" class="other form-control is-select" value="other" data-element="select" data-name="milieu"><?php echo $milieu; ?></option>
401
														<?php endif; ?>
402
													</select>
403
												</div>
404
											</div>
405
										</div>
406
									<?php endif; ?>
407
								<?php else : ?>
408
									<div class="">
409
										<label for="milieu" class="col-sm-8">
410
											<i class="fa fa-street-view" aria-hidden="true"></i>
411
											<?php echo $observation['milieu']; ?>
412
										</label>
413
										<div class="col-sm-8 mb-3">
414
											<input id="milieu" name="milieu" class="form-control has-tooltip" data-toggle="tooltip" type="text" placeholder="<?php echo $observation['milieu-ph']; ?>" title="<?php echo $observation['milieu-title']; ?>">
415
										</div>
416
									</div>
417
								<?php endif; ?><!-- fin choix milieu(x) -->
418
								<div class="">
419
									<label for="notes" class="col-sm-8">
420
										<i class="fa fa-pen" aria-hidden="true"></i>
421
										<?php echo $observation['notes']; ?>
422
									</label>
423
									<div class="col-sm-8 mb-3">
424
										<textarea id="notes" form="form-observation" class="col-md-12 has-tooltip" data-toggle="tooltip" rows="7" name="notes" placeholder="<?php echo $observation['notes_ph']; ?>" title="<?php echo $observation['notes-title']; ?>"></textarea>
425
									</div>
426
								</div>
427
 
428
							</div>
429
						</div>
430
					</form>
431
 
432
					<!-- Messages d'erreur du formulaire-->
433
					<div class="zone-alerte">
434
						<div id="dialogue-geoloc-ko" class="alert alert-warning alert-block hidden">
435
							<a class="close">×</a>
436
							<h4 class="alert-heading"><?php echo $observation['alertgk-title']; ?></h4>
437
							<p><?php echo $observation['alertgk']; ?></p>
438
						</div>
439
						<div id="dialogue-taxon-or-image" class="alert alert-warning alert-block hidden">
440
							<a class="close">×</a>
441
							<h4 class="alert-heading"><?php echo $observation['alert-img-tax-title']; ?></h4>
442
							<p><?php echo $observation['alert-img-tax']; ?></p>
443
						</div>
444
					</div>
445
 
446
					<!-- Champs supplémentaires -->
447
					<?php if ( isset($widget['chpSupp'] ) && 0 < count( (array) $widget['chpSupp'] ) ) : ?>
448
						<form id="form-supp"  class="bloc-top" role="form" autocomplete="on">
449
							<h2><?php echo $chpsupp['titre']; ?></h2>
450
							<div id="zone-supp" class="row">
451
 
452
								<?php foreach( $widget['chpSupp'][ $widget['projet'] ]['champs-supp'] as $champ ) : ?>
453
									<?php
454
										$min         = ( isset( $champ['fieldValues']['min'] ) )? ' min="' . $champ['fieldValues']['min'] . '"':'';
455
										$max         = ( isset( $champ['fieldValues']['max'] ) )? ' max="' . $champ['fieldValues']['max'] . '"':'';
456
										$step        = ( isset( $champ['fieldValues']['step'] ) )? ' step="' . $champ['fieldValues']['step'] . '"':'';
457
										$default     = ( isset( $champ['fieldValues']['default'] ) )? ' value="' . $champ['fieldValues']['default'] . '" data-default="' . $champ['fieldValues']['default'] . '"' :'';
458
										$description = ( isset( $champ['description'] ) )? ' data-toggle="tooltip" title="' . $champ['description'] . '"':'';
459
										$placeholder = ( isset( $champ['fieldValues']['placeholder'] ) )? ' placeholder="' . $champ['fieldValues']['placeholder'] . '"':'';
460
										$required    = '';
461
										$mandatory   = '';
462
										$pattern     = '';
463
										$obs_radio   = '';
464
										$help        = '';
465
										$help_button = '';
466
 
467
										if( $champ['help'] ) {
468
											$help = ' and-help';
469
											$help_button = ' <div class="help-button help-' . $champ['key'] . ' btn btn-outline-info btn-sm border-0" data-key="' . $champ['key'] . '" data-name="' . $champ['name'] . '" data-mime-type="' . $champ['help'] . '"><i class="fas fa-info-circle"></i></div>';
470
										}
471
 
472
										if( $champ['mandatory'] ) {
473
											// Attr required
474
											$required  = ' required';
475
											// class="obligatoire"
476
											$mandatory = ' obligatoire';
477
										}?>
478
											<div class="col-md-6">
479
										<?php
480
										switch( $champ['element'] ) {
481
											case 'radio':
482
											case 'checkbox': ?>
483
												<div class="control-group <?php echo $champ['element']; ?> mb-3"<?php echo $required; ?> data-name="<?php echo $champ['key']; ?>[]">
484
													<div class="col-sm-8 list-label<?php echo $help . $mandatory; ?>">
485
														<?php echo $champ['name'] . $help_button; ?>
486
													</div>
487
													<div class="col-sm-8 has-tooltip" <?php echo $description; ?>>
488
 
489
														<?php foreach ( $champ['fieldValues']['listValue'] as $i => $list_value_array ) : ?>
490
 
491
																<?php
492
																	$checked = '';
493
																	if ( '#' === substr( $list_value_array[0], -1 ) ) :
494
																		$checked = ' checked';
495
																		$list_value_array[0] = substr( $list_value_array[0], 0, -1 );
496
																	endif;
497
																?>
498
 
499
																<?php if( 'other' !== $list_value_array ) : ?>
500
																	<label for="<?php echo $champ['fieldValues']['cleanListValue'][$i]; ?>" class="<?php echo $champ['fieldValues']['cleanListValue'][$i]; ?>">
501
																		<input type="<?php echo $champ['element']; ?>" id="<?php echo $champ['fieldValues']['cleanListValue'][$i]; ?>" name="<?php echo $champ['key']; ?>[]" value="<?php echo $list_value_array[0]; ?>"<?php echo $checked; ?> class="<?php echo $champ['fieldValues']['cleanListValue'][$i] . ' ' . $champ['key']; ?>" data-label="<?php echo $champ['name']; ?>" data-name="<?php echo $champ['key']; ?>">
502
																		<?php echo ( '' !== $list_value_array[1] ) ? ucfirst($list_value_array[1]) : ucfirst($list_value_array[0]); ?>
503
																	</label>
504
																<?php else : ?>
505
																	<label for="other-<?php echo $champ['key']; ?>">
506
																		<input type="<?php echo $champ['element']; ?>" id="other-<?php echo $champ['key']; ?>" name="<?php echo $champ['key']; ?>[]" value="other" class="other <?php echo $champ['key']; ?>" data-label="<?php echo $champ['name']; ?>" data-element="<?php echo $champ['element']; ?>" data-name="<?php echo $champ['key']; ?>">
507
																		Autre
508
																	</label>
509
																<?php endif; ?>
510
 
511
														<?php endforeach; ?>
512
 
513
													</div>
514
												</div>
515
											<?php break;
516
 
517
											case 'list-checkbox': ?>
518
												<div class="multiselect <?php echo $champ['element'] . $help; ?>">
519
													<label class="col-sm-8<?php echo $mandatory; ?>" title="<?php echo $chpsupp['select-checkboxes-texte'];?>">
520
														<?php echo $champ['name'] . $help_button; ?>
521
													</label>
522
													<div class="control-group col-sm-8 mb-3 has-tooltip" <?php echo $description; ?>>
523
														<div class="selectBox">
524
															<select class="form-control list-checkbox custom-select" id="list-checkbox-<?php echo $champ['key']; ?>">
525
																<option><?php echo $chpsupp['select-checkboxes-texte'];?></option>
526
															</select>
527
															<div class="overSelect"></div>
528
														</div>
529
														<div class="checkboxes hidden" <?php echo $required; ?> data-name="<?php echo $champ['key']; ?>[]">
530
															<?php foreach ( $champ['fieldValues']['listValue'] as $i => $list_value_array ) : ?>
531
 
532
																<?php
533
																	$checked = '';
534
																	if ( '#' === substr( $list_value_array[0], -1 ) ) :
535
																		$checked = ' checked';
536
																		$list_value_array[0] = substr( $list_value_array[0], 0, -1 );
537
																	endif;
538
																?>
539
 
540
																<?php if( 'other' !== $list_value_array ) : ?>
541
																	<label for="<?php echo $champ['fieldValues']['cleanListValue'][$i]; ?>">
542
																		<input type="checkbox" id="<?php echo $champ['fieldValues']['cleanListValue'][$i]; ?>" name="<?php echo $champ['key']; ?>[]" value="<?php echo $list_value_array[0]; ?>"<?php echo $checked; ?> class="<?php echo $champ['fieldValues']['cleanListValue'][$i] . ' ' . $champ['key']; ?>" data-label="<?php echo $champ['name']; ?>" data-name="<?php echo $champ['key']; ?>">
543
																		<?php echo ( '' !== $list_value_array[1] ) ? ucfirst($list_value_array[1]) : ucfirst($list_value_array[0]); ?>
544
																	</label>
545
																<?php else : ?>
546
																	<label for="other-<?php echo $champ['key']; ?>">
547
																		<input type="checkbox" id="other-<?php echo $champ['key']; ?>" name="<?php echo $champ['key']; ?>[]" value="other" class="other <?php echo $champ['key']; ?>" data-label="<?php echo $champ['name']; ?>" data-element="checkboxes" data-name="<?php echo $champ['key']; ?>">
548
																		Autre
549
																	</label>
550
																<?php endif; ?>
551
 
552
															<?php endforeach; ?>
553
 
554
														</div>
555
													</div>
556
												</div>
557
											<?php break;
558
 
559
											case 'select': ?>
560
												<div class="control-group mb-3">
561
													<label for="<?php echo $champ['key']; ?>" class="col-sm-8<?php echo $mandatory; ?>"><?php echo $champ['name'] . $help_button; ?></label>
562
													<div class="col-sm-8 mb-3">
563
														<div class="select-wrapper add-field-select <?php echo $help; ?>">
564
															<select id="<?php echo $champ['key']; ?>" class="<?php echo $champ['key'] . ' ' . $champ['element']; ?> form-control has-tooltip custom-select mb-2"<?php echo $required; ?> data-label="<?php echo $champ['name']; ?>" data-name="<?php echo $champ['key']; ?>" <?php echo $description; ?>>
565
 
566
																<?php foreach ( $champ['fieldValues']['listValue'] as $list_value_array ) : ?>
567
 
568
																	<?php
569
																		$selected = '';
570
																		if ( '#' === substr( $list_value_array[0], -1 ) ) :
571
																			$selected = ' selected="selected"';
572
																			$list_value_array[0] = substr( $list_value_array[0], 0, -1 );
573
																		endif;
574
																	?>
575
 
576
																	<?php if( 'other' !== $list_value_array ) : ?>
577
																		<option value="<?php echo $list_value_array[0]; ?>"<?php echo $selected; ?> data-name="<?php echo $champ['key']; ?>">
578
																			<?php echo ( '' !== $list_value_array[1] ) ? ucfirst($list_value_array[1]) : ucfirst($list_value_array[0]); ?>
579
																		</option>
580
																	<?php else : ?>
581
																		<option id="other-<?php echo $champ['key']; ?>" class="other form-control is-select" value="other" data-element="<?php echo $champ['element']; ?>" data-name="<?php echo $champ['key']; ?>">Autre</option>
582
																	<?php endif; ?>
583
																<?php endforeach; ?>
584
															</select>
585
														</div>
586
													</div>
587
												</div>
588
											<?php break;
589
 
590
											case 'textarea': ?>
591
												<div class="control-group">
592
													<label for="<?php echo $champ['key']; ?>" class="col-sm-8<?php echo $help . $mandatory; ?> " ><?php echo $champ['name'] . $help_button; ?></label>
593
													<div class="col-sm-8 mb-3">
594
														<textarea type="<?php echo $champ['element']; ?>" id="<?php echo $champ['key']; ?>" name="<?php echo $champ['key']; ?>" class="<?php echo $champ['key'] . $help; ?> form-control has-tooltip" <?php echo $description . $placeholder . $required; ?> data-label="<?php echo $champ['name']; ?>"></textarea>
595
													</div>
596
												</div>
597
											<?php break;
598
 
599
											case 'range': ?>
600
												<div class="control-group">
601
													<label for="<?php echo $champ['key']; ?>" class="col-sm-8<?php echo $help . $mandatory; ?>"><?php echo $champ['name'] . $help_button; ?></label>
602
													<div class="col-sm-8 mb-3 row">
603
														<?php
604
															$div_range_min_max = '';
605
 
606
															if ( isset( $champ['fieldValues']['min'] ) )  {
607
																$div_range_min_max =
608
																	"<p class=\"col-2 range-values text-center font-weight-bold\">".
609
																		"Min " . $champ['fieldValues']['min'] .
610
																	"</p>";
611
															}
612
 
613
															$div_range_min_max .= '<div class="range-live-value range-values text-center font-weight-bold col-';
614
 
615
															if ( isset( $champ['fieldValues']['min'] ) && isset( $champ['fieldValues']['max'] ) ) {
616
																$div_range_min_max .= '8';
617
															} elseif ( isset( $champ['fieldValues']['min'] ) || isset( $champ['fieldValues']['max'] ) ) {
618
																$div_range_min_max .= '10';
619
															} else {
620
																$div_range_min_max .= '12';
621
															}
622
 
623
															$div_range_min_max .= '" onload="this.innerText = document.getElementById(&apos;ajouter-obs&apos;).value"></div>';
624
 
625
															if( isset( $champ['fieldValues']['max'] ) ) {
626
																$div_range_min_max .=
627
																	"<p class=\"col-2 range-values text-center font-weight-bold\">".
628
																		"Max " . $champ['fieldValues']['max'] .
629
																	"</p>";
630
															}
631
 
632
															echo $div_range_min_max;
633
														?>
634
														<input type="<?php echo $champ['element']; ?>" name="<?php echo $champ['key']; ?>" class="pl-3 custom-range <?php echo $champ['key'] . $help; ?> form-control has-tooltip" <?php echo $description . $placeholder . $step . $default . $min . $max . $required; ?> data-label="<?php echo $champ['name']; ?>">
635
													</div>
636
												</div>
637
												<?php break;
638
 
639
											case 'number':
640
											case 'date': ?>
641
												<div class="control-group">
642
													<label for="<?php echo $champ['key']; ?>" class="col-sm-8<?php echo $mandatory; ?>"><?php echo $champ['name'] . $help_button; ?></label>
643
													<div class="col-sm-8 mb-3">
644
														<input type="<?php echo $champ['element']; ?>" name="<?php echo $champ['key']; ?>" class="<?php echo $champ['key'] . $help; ?> form-control has-tooltip"<?php echo  $pattern . $description . $placeholder . $step . $default . $min . $max . $required; ?> data-label="<?php echo $champ['name']; ?>">
645
													</div>
646
												</div>
647
												<?php break;
648
 
649
											case 'text' :
650
											case 'email':
651
											default: ?>
652
												<div class="control-group">
653
													<label for="<?php echo $champ['key']; ?>" class="col-sm-8<?php echo $mandatory; ?>"><?php echo $champ['name'] . $help_button; ?></label>
654
													<div class="col-sm-8 mb-3">
655
														<input type="<?php echo $champ['element']; ?>" name="<?php echo $champ['key']; ?>" class="<?php echo $champ['key'] . $help; ?> form-control has-tooltip" <?php echo $description . $placeholder . $required; ?> data-label="<?php echo $champ['name']; ?>">
656
													</div>
657
												</div>
658
											<?php break;
659
										}
660
									?>
661
										</div>
662
								<?php endforeach; ?>
663
							</div>
664
						</form>
665
					<?php endif; ?><!-- Fin champs supplémentaires -->
666
 
667
					<form id="form-upload" class="form-horizontal bloc-top" action="<?php echo $url_ws_upload ?>" method="post" enctype="multipart/form-data">
668
						<h2><?php echo $image['titre']; ?></h2>
669
						<p id="miniature-info">
670
							<?php echo $image['aide']; ?>
671
						</p>
672
						<div id ="photos-conteneur" class="control-group col-sm-12">
673
							<div>
674
								<label for="fichier" class="label-file btn btn-large btn-info mb-3">
675
									<span class="label-text"><i class="fas fa-download"></i> <?php echo $image['ajouter']; ?></span>
676
									<input type="file" id="fichier" name="fichier" class="input-file" accept="image/jpeg" multiple>
677
									<input type="hidden" name="MAX_FILE_SIZE" value="5242880">
678
								</label>
679
							</div>
680
							<span for="fichier" class="error" style="display: none;"><?php echo $observation['error-taxon'];?></span>
681
 
682
							<div id="miniatures"></div>
683
							<p class="miniature-msg" class="span12">&nbsp;</p>
684
						</div>
685
					</form>
686
 
687
					<div id="image" class="row"></div>
688
				</div>
689
 
690
				<!-- Bouton cr&ation d'une obs -->
691
				<div class="row mb-3">
692
					<div class="centre" title="<?php echo $resume['creer-title']; ?>">
693
						<button id="ajouter-obs" class="btn btn-success"><i class="fas fa-check-square"></i> <?php echo $resume['creer']; ?></button>
694
					</div>
695
				</div>
696
 
697
				<!-- Messages d'erreur du formulaire-->
698
				<div class="row">
699
					<div class="zone-alerte">
700
						<div id="message-chargement" class="alert alert-secondary alert-block hidden">
701
							<a class="close">×</a>
702
							<h4 class="alert-heading"><?php echo $resume['alertchargt']; ?></h4>
703
							<p><?php echo $resume['alertchargt-desc']; ?></p>
704
						</div>
705
					</div>
706
					<div class="zone-alerte">
707
						<div id="dialogue-bloquer-creer-obs" class="alert alert-warning alert-block hidden">
708
							<a class="close">×</a>
709
							<h4 class="alert-heading"><?php echo $resume['alert10max']; ?></h4>
710
							<p><?php echo $resume['alert10max-desc']; ?></p>
711
						</div>
712
					</div>
713
					<div class="zone-alerte">
714
						<div id="dialogue-form-invalide" class="alert alert-warning alert-block hidden">
715
							<a class="close">×</a>
716
							<h4 class="alert-heading"><?php echo $resume['alertchp']; ?></h4>
717
							<p><?php echo $resume['alertchp-desc']; ?></p>
718
						</div>
719
					</div>
720
				</div>
721
 
722
				<!-- Affiche le tableau récapitualif des observations ajoutées -->
723
				<div id="zone-liste-obs" class="bloc-top hidden">
724
					<div class="alert alert-info">
725
						<h2 class="transmission-title"><strong><?php echo $resume['titre']; ?> <span class="obs-nbre badge badge-info">0</span></strong></h2>
726
						<button id="transmettre-obs" class="btn btn-success droite" disabled="disabled"
727
							title="<?php echo $resume['trans-title']; ?>" type="button">
728
							<?php echo $resume['trans']; ?>
729
						</button>
730
					</div>
731
					<!-- chargement -->
732
					<div id="chargement" class="modal-fenetre hidden">
733
						<div id="chargement-centrage" class="modal-contenu">
734
							<div class="progress active">
735
								<div id="barre-progression-upload" class="progress-bar progress-bar-striped" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="10" style="">
736
										<span class="sr-only">0/10 <?php echo $resume['nbobs']; ?></span>
737
									</div>
738
							</div>
739
							<p id="chargement-txt"><?php echo $resume['transencours']; ?></p>
740
						</div>
741
					</div>
742
					<div id="liste-obs" ></div>
743
					<div class="row">
744
						<div class="zone-alerte">
745
							<div id="dialogue-zero-obs" class="alert alert-block hidden">
746
								<a class="close">×</a>
747
								<h4 class="alert-heading"><?php echo $resume['alert0obs']; ?></h4>
748
								<p><?php echo $resume['alert0obs-desc']; ?></p>
749
							</div>
750
							<div id="dialogue-obs-transaction-ok" class="alert alert-success alert-block hidden">
751
								<a class="close">×</a>
752
								<h4 class="alert-heading"><?php echo $resume['info-trans']; ?></h4>
753
								<div class="alert-txt"></div>
754
							</div>
755
							<div id="dialogue-obs-transaction-ko" class="alert alert-error alert-block hidden">
756
								<a class="close">×</a>
757
								<h4 class="alert-heading"><?php echo $resume['alerttrans']; ?></h4>
758
								<div class="alert-txt"></div>
759
							</div>
760
						</div>
761
					</div>
762
				</div>
763
 
764
				<!-- Templates HTML -->
765
				<div id="tpl-transmission-ok" class="hidden">
766
					<p class="msg"><?php echo $resume['transok']; ?></p>
767
				</div>
768
				<div id="tpl-transmission-ko" class="hidden">
3709 idir 769
					<p class="msg"><?php echo $resume['transkomsg']; ?><a href="<?php echo $url_remarques; ?>?lang=fr&service=cel&pageSource=<?php echo urlencode( 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'] ); ?>" target="_blank" onclick="javascript: window.open( this.getAttribute( 'href' ), 'Tela Botanica - Remarques', config = 'height=700, width=640, scrollbars=yes, resizable=yes' ); return false;"><?php echo $resume['transkolien']; ?></a>.</p>
3638 delphine 770
				</div>
771
			</div>
772
		</div>
773
 
774
		<!-- modale -->
775
		<div id="fenetre-modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="fenetre-modal-label" style="display: none;" aria-hidden="true">
776
			<div class="modal-dialog modal-dialog-centered" role="document">
777
				<div class="modal-content">
778
					<div class="modal-header">
779
						<h5 class="modal-title" id="fenetre-modal-label"></h5>
780
						<button type="button" class="close" data-dismiss="modal" aria-label="Close">
781
							<span aria-hidden="true">&times;</span>
782
						</button>
783
					</div>
784
					<div class="modal-body" id="print_content"></div>
785
					<div class="modal-footer"></div>
786
				</div>
787
			</div>
788
		</div>
789
		<!-- carto -->
790
		<script type="text/javascript" src="<?php echo $url_base; ?>js/tb-geoloc/tb-geoloc-lib-app.js"></script>
791
		<!-- Jquery -->
792
		<script type="text/javascript" src="https://resources.tela-botanica.org/jquery/1.11.1/jquery-1.11.1.min.js"></script>
793
		<!-- Jquery UI : nécessaire pour le minicalendrier et l'auto-complétion -->
794
		<script type="text/javascript" src="https://resources.tela-botanica.org/jquery/jquery-ui/1.11.0/js/jquery-ui.min.js"></script>
795
		<!-- <script type="text/javascript" src="https://resources.tela-botanica.org/jquery/jquery-ui/1.11.0/js/datepicker-fr.js"></script> -->
796
		<!-- Jquery Plugins -->
797
		<!-- Jquery Validate : nécessaire pour la validation des formulaires -->
798
		<script type="text/javascript" src="https://resources.tela-botanica.org/jquery/validate/1.11.1/jquery.validate.min.js"></script>
799
		<script type="text/javascript" src="https://resources.tela-botanica.org/jquery/validate/1.11.1/additional-methods.min.js"></script>
800
		<script type="text/javascript" src="https://resources.tela-botanica.org/jquery/validate/1.11.1/messages_fr.js"></script>
801
		<!-- Jquery Form :nécessaire pour l'upload des images -->
802
		<script type="text/javascript" src="https://resources.tela-botanica.org/jquery/form/3.51/jquery.form.min.js"></script>
803
		<!-- Bootstrap -->
804
		<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
805
		<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
806
		<!-- Connexion, bloc de prévisualisation, date -->
807
		<script type="text/javascript" src="<?php echo $url_base; ?>js/Utils.js"></script>
808
		<script type="text/javascript" src="<?php echo $url_base; ?>js/WidgetsSaisiesCommun.js"></script>
809
		<script type="text/javascript" src="<?php echo $url_base; ?>js/WidgetSaisie.js"></script>
810
		<script type="text/javascript">
811
			//<![CDATA[
812
				const NBRE_ELTS_AUTOCOMP = 20;
813
				const OBS_MAX_NBRE       = 10;
814
				const DUREE_MESSAGE      = 1000;
815
 
816
				var widgetProp = {
817
					// url jusqu'à "/widget:cel:"
818
					'urlWidgets'                        : "<?php echo $widgets_url; ?>",
819
					// module utilisé (apa,lg,streets)
820
					'projet'                            : "<?php echo $widget['projet']; ?>",
821
					// id du projet
822
					'idProjet'                          : "<?php echo $widget['id_projet']; ?>",
823
					// La présence du parametre 'debug' dans l'URL enclenche le débogage
824
					'debug'                             : <?php echo isset( $_GET['debug'] ) ? 'true' : 'false'; ?>,
825
					// La présence du parametre 'html5' dans l'URL enclenche les fonctions avancées HTML5
826
					'html5'                             : <?php echo isset($_GET['html5']) ? 'true' : 'false'; ?>,
827
					// Mot-clé du widget/projet
828
					'tagsMotsCles'                      : "<?php echo $widget['motscles']; ?>",
829
					// Mots-clés à ajouter aux images
830
					'tagImg'                            : "<?php echo isset($widget['tag-img']) ? $widget['tag-img'] : ''; ?>",
831
					// Mots-clés à ajouter aux observations
832
					'tagObs'                            : "<?php echo isset($widget['tag-obs']) ? $widget['tag-obs'] : ''; ?>",
833
					// Précharger le formulaire avec les infos d'une observation
834
					'obsId'                             : "<?php echo isset($_GET['id-obs']) ? $_GET['id-obs'] : ''; ?>",
835
					// URL du web service réalisant l'insertion des données dans la base du CEL.
836
					'serviceSaisieUrl'                  : "<?php echo $url_ws_saisie; ?>",
837
					// URL du web service permettant de récupérer les infos d'une observation du CEL.
838
					'serviceObsUrl'                     : "<?php echo $url_ws_obs; ?>",
839
					// langue
840
					'langue'                            : "<?php echo $widget['langue']; ?>",
841
					// Squelette d'URL du web service de l'annuaire.
842
					'serviceAnnuaireIdUrl'              : "<?php echo $url_ws_annuaire; ?>",
843
					// mode : prod / beta / local
844
					'mode'                              : "<?php echo $conf_mode; ?>",
845
					// URL de l'icône du chargement en cours d'une image
846
					'chargementImageIconeUrl'           : "<?php echo $url_base; ?>img/icones/chargement.gif",
847
					// URL de l'icône pour une photo manquante
848
					'pasDePhotoIconeUrl'                : "<?php echo $url_base; ?>img/icones/pasdephoto.png",
849
					// Code du référentiel utilisé pour les nom scientifiques.
850
					'nomSciReferentiel'                 : "<?php echo ( !empty( $widget['referentiel'] ) ) ? strtolower( $widget['referentiel'] ) : 'bdtfxr'; ?>",
851
					// Indication de la présence d'une espèce imposée
852
					'especeImposee'                     : "<?php echo $widget['especes']['espece_imposee']; ?>",
853
					// Tableau d'informations sur l'espèce imposée
854
					'infosEspeceImposee'                : "<?php echo $widget['especes']['infos_espece']; ?>",
855
					// Indication de la présence d'un référentiel imposé
856
					'referentielImpose'                 : "<?php echo ( !empty( $widget['referentiel'] ) ) ? strtolower( $widget['referentiel'] ) : 'bdtfxr'; ?>",
857
					// #taxon est une liste
858
					'isTaxonListe'                      : <?php echo ( isset( $widget['especes']['taxons'] ) && count( (array) $widget['especes']['taxons'] ) )? 'true' : 'false' ; ?>,
859
					// Nombre d'élément dans les listes d'auto-complétion
860
					'autocompletionElementsNbre'        : NBRE_ELTS_AUTOCOMP,
861
					// URL du web service permettant l'auto-complétion des noms scientifiques
862
					'serviceAutocompletionNomSciUrl'    : "<?php echo $widget['especes']['url_ws_autocompletion_ns']; ?>?"+
863
						"masque={masque}&"+
864
						"recherche=etendue&"+
865
						"retour.champs=famille,nom_retenu,nom_retenu_complet,num_taxonomique,nom_retenu.id&"+
3680 delphine 866
						"ns.structure=au,an&"+
3638 delphine 867
						"navigation.limite=" + NBRE_ELTS_AUTOCOMP,
868
					// Squelette d'URL du web service permettant l'auto-complétion des noms scientifiques
869
					'serviceAutocompletionNomSciUrlTpl' : "<?php echo $widget['especes']['url_ws_autocompletion_ns_tpl']; ?>?"+
870
						"masque={masque}&"+
871
						"recherche=etendue&"+
872
						"retour.champs=famille,nom_retenu,nom_retenu_complet,num_taxonomique,nom_retenu.id&"+
873
						"retour.tri=alpharet&"+ // tri "à la CeL"
3680 delphine 874
						"ns.structure=au,an&"+
3638 delphine 875
						"navigation.limite=" + NBRE_ELTS_AUTOCOMP,
876
					// Nombre d'observations max autorisé avant transmission
877
					'obsMaxNbre'                        : OBS_MAX_NBRE,
878
					// Durée d'affichage en milliseconde des messages d'informations
879
					'dureeMessage'                      : DUREE_MESSAGE,
880
					// Squelette d'URL du web service d'eFlore fournissant les noms de communes.
881
					'serviceNomCommuneUrl'              : "https://api.tela-botanica.org/service:eflore:0.1/osm/nom-commune?lon={lon}&lat={lat}",
882
					// Squelette d'URL du web service d'eFlore fournissant les noms de communes hors de France (localisation approximative).
883
					'serviceNomCommuneUrlAlt'           : "https://api.tela-botanica.org/service:eflore:0.1/wikipedia/nom-commune?lon={lon}&lat={lat}&nbre=1"
884
				};
885
 
886
				$( document ).ready( function() {
887
					widget = new WidgetSaisie(widgetProp);
888
					widget.init();
889
					// Fonctions de Style et Affichage des éléments "spéciaux"
890
					utils.init();
891
				});
892
			//]]>
893
		</script>
894
		<!-- Barre de navigation -->
895
		<?php if ( $bar ): ?>
896
			<script src="<?php echo $url_script_navigation; ?>"></script>
897
		<?php endif; ?>
898
	</body>
899
</html>