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