Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
3312 idir 1
<div id="zone-lichens" class="bloc-top">
2
	<h2 class="mb-3"><?php echo $lichens['titre']; ?></h2>
3
	<div id="bouton-poursuivre" class="btn btn-success hidden mb-3" data-load="lichens">
4
		<i class="far fa-plus-square"></i>&nbsp;<?php echo $lichens['poursuivre-lichens']; ?>
5
	</div>
6
	<div class="row">
7
		<div id="bloc-lichens-gauche" class="col-md-6">
8
			<div id="bloc-form-lichens" class="">
9
				<form id="form-lichens" role="form" autocomplete="off">
10
					<div class="control-group">
11
						<label for="choisir-arbre" class="col-sm-8 obligatoire" title="<?php echo $lichens['arbre-title']; ?>">
12
							<i class="fas fa-tree" aria-hidden="true"></i>
13
							<?php echo $general['arbre']; ?>
14
						</label>
15
						<div class="col-sm-8 mb-3">
16
							<select id="choisir-arbre" name="choisir-arbre" class="choisir-arbre form-control custom-select has-tooltip" data-toggle="tooltip"  title="<?php echo $lichens['arbre-title']; ?>" required>
17
								<option value="" selected hidden><?php echo $general['numero-arbre']; ?></option>
18
							</select>
19
						</div>
20
					</div>
21
 
22
					<div class="control-group">
23
						<label for="obs-date" class="col-sm-8 obligatoire" title="">
24
							<i class="fa fa-calendar" aria-hidden="true"></i>
25
							<?php echo $general['date']; ?>
26
						</label>
27
						<div class="col-sm-8 mb-3">
28
							<input type="date" id="obs-date" name="obs-date" class="form-control" max="<?php echo date('Y-m-d', time()); ?>" placeholder="jj/mm/aaaa" required>
29
						</div>
30
					</div>
31
 
32
					<input id="referentiel" name="referentiel" value="<?php echo $widget['referentiel']; ?>" type="hidden">
33
 
34
					<div id="bloc-taxon" class="control-group">
35
						<label for="taxon" class="col-sm-8 obligatoire" title="">
36
							<i class="fa fa-leaf" aria-hidden="true"></i>
37
							<?php echo $general['espece']; ?> (<?php echo $widget['referentiel']; ?>)
38
						</label>
39
						<div class="col-sm-8 mb-3">
40
							<input id="taxon" name="taxon" class="form-control taxon-validation has-tooltip" type="text" data-toggle="tooltip" title="<?php echo $general['espece-title']; ?>" autocomplete="off">
41
						</div>
42
					</div>
43
 
44
					<div class="control-group">
45
						<label for="certitude" class="col-sm-8 obligatoire" title="">
46
							<i class="fa fa-question" aria-hidden="true"></i>
47
							<?php echo $general['certitude']; ?>
48
						</label>
49
						<div class="col-sm-8 mb-3">
50
							<select id="certitude" name="certitude" class="form-control custom-select" required>
51
								<option value="" hidden selected><?php echo $general['choisir']; ?></option>
52
								<option value="à déterminer" class="aDeterminer"><?php echo $general['certADet']; ?></option>
53
								<option value="douteuse" class="douteuse"><?php echo $general['certDout']; ?></option>
54
								<option value="certaine" class="certaine"><?php echo $general['certCert']; ?></option>
55
							</select>
56
						</div>
57
					</div>
58
					<div class="control-group">
59
						<div class="col-sm-8 mb-2 list-label obligatoire" title="<?php echo $lichens['loc-tronc-title']; ?>">
60
							<i class="fas fa-cube" aria-hidden="true"></i>
61
							<?php echo $lichens['loc-tronc']; ?>
62
						</div>
63
						<table class="table col-sm-8">
64
						  <thead>
65
							<tr>
66
							  <th scope="col">Face :</th>
67
							  <th scope="col"><?php echo $general['nord']; ?></th>
68
							  <th scope="col"><?php echo $general['est']; ?></th>
69
							  <th scope="col"><?php echo $general['sud']; ?></th>
70
							  <th scope="col"><?php echo $general['ouest']; ?></th>
71
							</tr>
72
						  </thead>
73
						  <tbody>
74
							<tr>
75
							  <th scope="row">1 (haut)</th>
76
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-n1" value="n1"></td>
77
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-s1" value="s1"></td>
78
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-e1" value="e1"></td>
79
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-o1" value="o1"></td>
80
							</tr>
81
							<tr>
82
							  <th scope="row">2</th>
83
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-n2" value="n2"></td>
84
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-s2" value="s2"></td>
85
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-e2" value="e2"></td>
86
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-o2" value="o2"></td>
87
							</tr>
88
							<tr>
89
							  <th scope="row">3</th>
90
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-n3" value="n3"></td>
91
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-s3" value="s3"></td>
92
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-e3" value="e3"></td>
93
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-o3" value="o3"></td>
94
							</tr>
95
							<tr>
96
							  <th scope="row">4</th>
97
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-n4" value="n4"></td>
98
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-s4" value="s4"></td>
99
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-e4" value="e4"></td>
100
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-o4" value="o4"></td>
101
							</tr>
102
							<tr>
103
							  <th scope="row">5 (bas)</th>
104
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-n5" value="n5"></td>
105
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-s5" value="s5"></td>
106
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-e5" value="e5"></td>
107
							  <td><input type="checkbox" name="lichens-tronc" id="lichens-tronc-o5" value="o5"></td>
108
							</tr>
109
						  </tbody>
110
						</table>
111
					</div>
112
 
113
					<div class="">
114
						<label for="commentaire" class="col-sm-8" title="">
115
							<i class="fa fa-pen" aria-hidden="true"></i>
116
							<?php echo $general['commentaires']; ?>
117
						</label>
118
						<div class="col-sm-8 mb-3">
119
							<textarea id="commentaire" class="col-md-12" rows="7" name="commentaire"></textarea>
120
						</div>
121
					</div>
122
				</form>
123
				<form id="form-upload" class="form-horizontal" action="<?php echo $url_ws_upload ?>" method="post" enctype="multipart/form-data">
124
					<div class="col-sm-8 mb-2 list-label and-help">
125
						<i class="fa fa-images" aria-hidden="true"></i>
3313 idir 126
						<?php echo $lichens['titre-photos']; ?>
3312 idir 127
					</div>
3313 idir 128
					<p id="miniature-info" class="col-sm-8">
3312 idir 129
						<?php echo $image['aide']; ?>
130
					</p>
131
					<div id ="photos-conteneur" class="control-group col-sm-8">
132
						<div id="bouton-fichier">
133
							<label for="fichier" class="label-file btn btn-large btn-info mb-3" title="<?php echo $image['photos-title']; ?>">
134
								<span class="label-text"><i class="fas fa-download"></i> <?php echo $image['ajouter']; ?></span>
135
								<input type="file" id="fichier" name="fichier" class="input-file" accept="image/jpeg" multiple>
136
								<input type="hidden" name="MAX_FILE_SIZE" value="5242880">
137
							</label>
138
						</div>
139
 
140
						<div id="miniatures"></div>
141
						<p class="miniature-msg" class="span12">&nbsp;</p>
142
					</div>
143
				</form>
144
				<!-- Bouton création d'une obs -->
145
				<div class="col-sm-8 mb-3">
146
					<div title="<?php echo $resume['creer-title']; ?>">
147
						<button id="ajouter-obs" class="btn btn-primary"><i class="fas fa-step-forward"></i> <?php echo $general['suivant']; ?></button>
148
					</div>
149
				</div>
150
			</div>
151
		</div><!-- fin formulaire lichens -->
152
		<!-- zone résumé obs lichens ( =zone de droite) -->
153
		<div id="bloc-lichens-droite" class="col-md-6">
154
			<div id="bouton-saisir-plantes" class="btn btn-info mb-3" data-load="plantes">
155
				<i class="fas fa-seedling"></i> <?php echo $resume['saisir-plantes']; ?>
156
			</div>
157
			<!-- Messages d'erreur du formulaire -->
158
			<div class="row">
159
				<div class="zone-alerte">
160
					<div id="dialogue-bloquer-creer-obs" class="alert alert-warning alert-block hidden">
161
						<a class="close">×</a>
162
						<h4 class="alert-heading"><?php echo $resume['alert10max']; ?></h4>
163
						<p><?php echo $resume['alert10max-desc']; ?></p>
164
					</div>
165
					<div id="dialogue-form-invalide" class="alert alert-warning alert-block hidden">
166
						<a class="close">×</a>
167
						<h4 class="alert-heading"><?php echo $resume['alertchp']; ?></h4>
168
						<p><?php echo $resume['alertchp-desc']; ?></p>
169
					</div>
170
					<div id="dialogue-taxon-or-image" class="alert alert-warning alert-block hidden">
171
						<a class="close">×</a>
172
						<h4 class="alert-heading"><?php echo $observation['alert-img-tax-title']; ?></h4>
173
						<p><?php echo $lichens['alert-img-tax']; ?></p>
174
					</div>
175
				</div>
176
			</div>
177
 
178
			<!-- Affiche le tableau récapitualif des observations ajoutées -->
179
			<div id="zone-liste-obs" class="">
180
				<div id="bloc-controle-liste-obs" class="alert alert-info">
181
					<h2 class="transmission-title"><strong><?php echo $resume['titre']; ?> <span class="obs-nbre badge badge-info">0</span></strong></h2>
182
					<button id="transmettre-obs" class="btn btn-primary has-tooltip" data-toggle="tooltip" disabled="disabled"
183
						title="<?php echo $resume['trans-title']; ?>" type="button">
184
						<?php echo $general['enregistrer']; ?>
185
					</button>
186
				</div>
187
				<div id="liste-obs" ></div>
188
				<div class="row">
189
					<div class="zone-alerte">
190
						<div id="dialogue-zero-obs" class="alert alert-block hidden">
191
							<a class="close">×</a>
192
							<h4 class="alert-heading"><?php echo $resume['alert0obs']; ?></h4>
193
							<p><?php echo $resume['alert0obs-desc']; ?></p>
194
						</div>
195
						<div id="dialogue-obs-transaction-ok" class="alert alert-success alert-block hidden">
196
							<a class="close">×</a>
197
							<h4 class="alert-heading"><?php echo $resume['info-trans']; ?></h4>
198
							<div class="alert-txt"></div>
199
						</div>
200
						<div id="dialogue-obs-transaction-ko" class="alert alert-error alert-block hidden">
201
							<a class="close">×</a>
202
							<h4 class="alert-heading"><?php echo $resume['alerttrans']; ?></h4>
203
							<div class="alert-txt"></div>
204
						</div>
205
					</div>
206
				</div>
207
			</div>
208
 
209
			<!-- Fenêtres modales -->
210
			<div id="chargement" class="modal-fenetre hidden">
211
				<div id="chargement-centrage" class="modal-contenu">
212
					<div class="progress progress-striped active">
213
						<div id="barre-progression-upload" class="progress-bar progress-bar-striped" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="10" style="">
214
								<span class="sr-only">0/10 <?php echo $resume['nbobs']; ?></span>
215
							</div>
216
					</div>
217
					<p id="chargement-txt">
218
						<?php echo $resume['transencours']; ?>
219
					</p>
220
				</div>
221
			</div>
222
 
223
			<!-- Templates HTML -->
224
			<div id="tpl-transmission-ok" class="hidden">
225
				<p class="msg"><?php echo $resume['transok']; ?></p>
226
			</div>
227
			<div id="tpl-transmission-ko" class="hidden">
228
				<p class="msg"><?php echo $resume['transko']; ?></p>
229
			</div>
230
		</div><!-- fin lichens zone résumé obs ( =zone de droite ) -->
231
	</div>
232
	<script type="text/javascript">
233
		releve = null;
234
		plantes = null;
235
		lichens = null;
236
		lichens = new LichensApa();
237
 
238
				// La présence du parametre 'debug' dans l'URL enclenche le débogage
239
				lichens.debug = <?php echo isset( $_GET['debug'] ) ? 'true' : 'false'; ?>;
240
				// La présence du parametre 'html5' dans l'URL enclenche les fonctions avancées HTML5
241
				lichens.html5 = <?php echo isset($_GET['html5']) ? 'true' : 'false'; ?>;
242
				// Mot-clé du widget/projet
243
				lichens.tagProjet = "WidgetApa,lichens";
244
				// Mots-clés à ajouter aux images
245
				lichens.tagImg = "<?php echo isset($_GET['tag-img']) ? $_GET['tag-img'] : ''; ?>";
246
				lichens.separationTagImg = "<?php echo isset($_GET['motcle']) && isset($_GET['tag-img']) ? ',' : ''; ?>";
247
				lichens.tagImg = <?php echo isset($_GET['motcle']) ? "'".$_GET['motcle']."' + lichens.separationTagImg + lichens.tagImg" : 'lichens.tagImg'; ?>;
248
				// Mots-clés à ajouter aux observations
249
				lichens.tagObs = "<?php echo isset($_GET['tag-obs']) ? $_GET['tag-obs'] : ''; ?>";
250
				lichens.separationTagObs = "<?php echo isset($_GET['projet']) && isset($_GET['tag-obs']) ? ',' : ''; ?>";
251
				lichens.tagObs = <?php echo isset($_GET['projet']) ? "'".$_GET['projet']."' + lichens.separationTagObs + lichens.tagObs" : 'lichens.tagObs'; ?>;
252
				// URL du web service réalisant l'insertion des données dans la base du CEL.
253
				lichens.serviceSaisieUrl = "<?php echo $url_ws_apa; ?>";
254
 
255
				// URL de l'icône du chargement en cours d'une image
256
				lichens.chargementImageIconeUrl = "<?php echo $url_base; ?>img/icones/chargement-image.gif";
257
				// URL de l'icône pour une photo manquante
258
				lichens.pasDePhotoIconeUrl = "<?php echo $url_base; ?>img/icones/pasdephoto.png";
259
 
260
				// Code du référentiel utilisé pour les nom scientifiques.
261
				lichens.nomSciReferentiel = "<?php echo strtolower( $widget['referentiel'] ); ?>";
262
				// Nombre d'élément dans les listes d'auto-complétion
263
				lichens.autocompletionElementsNbre = 20;
264
				// Indication de la présence d'un référentiel imposé
265
				lichens.referentielImpose = "<?php echo $referentiel_impose; ?>";
266
 
267
				// URL du web service permettant l'auto-complétion des noms scientifiques
268
				lichens.serviceAutocompletionNomSciUrl = "<?php echo $widget['especes']['url_ws_autocompletion_ns']; ?>?"+
269
					"masque={masque}&"+
270
					"recherche=etendue&"+
271
					"retour.champs=famille,nom_retenu,nom_retenu_complet,num_taxonomique,nom_retenu.id&"+
272
					"ns.structure=au&"+
273
					"navigation.limite=" + lichens.autocompletionElementsNbre;
274
				// Squelette d'URL du web service permettant l'auto-complétion des noms scientifiques
275
				lichens.serviceAutocompletionNomSciUrlTpl = "<?php echo $widget['especes']['url_ws_autocompletion_ns_tpl']; ?>?"+
276
					"masque={masque}&"+
277
					"recherche=etendue&"+
278
					"retour.champs=famille,nom_retenu,nom_retenu_complet,num_taxonomique,nom_retenu.id&"+
279
					"retour.tri=alpharet&"+ // tri "à la CeL"
280
					"ns.structure=au&"+
281
					"navigation.limite=" + lichens.autocompletionElementsNbre;
282
				// Nombre d'observations max autorisé avant transmission
283
				lichens.obsMaxNbre = 10;
284
				// Durée d'affichage en milliseconde des messages d'informations
285
				lichens.dureeMessage = 10000;
286
 
287
				// Initialisation du bousin
288
				lichens.init();
289
	</script>
290
</div>