728 |
mathilde |
1 |
<!-- DEBUT FORM_AVANCE -->
|
|
|
2 |
<script>
|
|
|
3 |
<!--
|
|
|
4 |
var AUTOCOMPLETION_ELEMENTS_NBRE = 50;
|
|
|
5 |
var URL_SERVICE_AUTOCOMPLETION_NOM_SCI = "<?=$url_base_completion_noms_sci?>";
|
947 |
aurelien |
6 |
var REFERENTIEL = "<?= Registre::get('parametres.referentiel');?>";
|
728 |
mathilde |
7 |
|
|
|
8 |
$(document).ready(function(){
|
1076 |
aurelien |
9 |
$('#bloc_recherche_av').hide();
|
728 |
mathilde |
10 |
$('#recherche_av').click(function(event) {
|
|
|
11 |
$('#bloc_recherche_av').slideToggle();
|
|
|
12 |
event.preventDefault();
|
|
|
13 |
return false;
|
|
|
14 |
});
|
|
|
15 |
});
|
734 |
mathilde |
16 |
|
|
|
17 |
|
728 |
mathilde |
18 |
-->
|
|
|
19 |
</script>
|
|
|
20 |
|
947 |
aurelien |
21 |
<a href="" id="recherche_av" name="recherche_av"> Recherche avancée dans la base de données <?= strtoupper(Registre::get('parametres.referentiel')); ?>. </a>
|
743 |
mathilde |
22 |
<hr class="nettoyage"/>
|
728 |
mathilde |
23 |
<div id="bloc_recherche_av">
|
|
|
24 |
<form id="recherche_av_form" method="get" action="<?=$lien?>" >
|
|
|
25 |
|
|
|
26 |
<fieldset class="numero_form">
|
|
|
27 |
<label for="nn">Numéro nomenclatural </label>
|
|
|
28 |
<input id="nn" type="text" name="nn" class="largeur-01" value="<?=isset($param['nn'])? $param['nn'] : ''?>"/>
|
|
|
29 |
<label for="nt">Numéro taxonomique </label>
|
|
|
30 |
<input type="text" id="nt" name="nt" class="largeur-01" value="<?=isset($param['nt'])? $param['nt'] : ''?>"/>
|
|
|
31 |
</fieldset>
|
|
|
32 |
<fieldset class="classification_form">
|
|
|
33 |
<legend> Classification </legend>
|
|
|
34 |
<br/>
|
|
|
35 |
<label for="fam"> Famille </label>
|
|
|
36 |
<input type="text" id="fam" name="fam" class="champ_autocomplete" value="<?=isset($param['fam'])? $param['fam'] : ''?>" />
|
|
|
37 |
<label for="gen"> Genre </label>
|
|
|
38 |
<input type="text" id="gen" name="gen" class="champ_autocomplete" value="<?=isset($param['gen'])? $param['gen'] : ''?>" />
|
|
|
39 |
<label for="sp">Epithète sp.</label>
|
|
|
40 |
<input type="text" id="sp" name="sp" class="champ_autocomplete" value="<?=isset($param['sp'])? $param['sp'] : ''?>" />
|
|
|
41 |
<br/><br/>
|
|
|
42 |
<? $type = ''; if (isset($param['type'])){ $type = $param['type']; } ?>
|
|
|
43 |
<label for="type">Type épithète infra </label>
|
|
|
44 |
<select name="type">
|
|
|
45 |
<option value="" <?=($type == '') ? 'selected="selected"' : '' ?> >
|
|
|
46 |
</option>
|
|
|
47 |
<option value="subsp." <?=($type == 'subsp.') ? 'selected="selected"' : '' ?> >
|
|
|
48 |
sous-espèce
|
|
|
49 |
</option>
|
|
|
50 |
<option value="infra-sp." <?=($type == 'infra-sp.') ? 'selected="selected"' : '' ?> >
|
|
|
51 |
infra-espèce
|
|
|
52 |
</option>
|
|
|
53 |
<option value="var." <?=($type == 'var.') ? 'selected="selected"' : '' ?> >
|
|
|
54 |
variété
|
|
|
55 |
</option>
|
|
|
56 |
<option value="subvar." <?=($type == 'subvar.') ? 'selected="selected"' : '' ?> >
|
|
|
57 |
sous-variété
|
|
|
58 |
</option>
|
|
|
59 |
<option value="f." <?=($type == 'f.') ? 'selected="selected"' : '' ?> >
|
|
|
60 |
forme
|
|
|
61 |
</option>
|
|
|
62 |
<option value="subf." <?=($type == 'subf.') ? 'selected="selected"' : '' ?> >
|
|
|
63 |
sous-forme
|
|
|
64 |
</option>
|
|
|
65 |
<option value="f. sp." <?=($type == 'f. sp.') ? 'selected="selected"' : '' ?> >
|
|
|
66 |
forma species
|
|
|
67 |
</option>
|
734 |
mathilde |
68 |
<option value="race" <?=($type == 'race') ? 'selected="selected"' : '' ?> >
|
|
|
69 |
race
|
|
|
70 |
</option>
|
|
|
71 |
<option value="proles" <?=($type == 'proles') ? 'selected="selected"' : '' ?> >
|
|
|
72 |
proles
|
|
|
73 |
</option>
|
728 |
mathilde |
74 |
</select>
|
|
|
75 |
<label for="ssp">Epithète infra spé.</label>
|
|
|
76 |
<input class="champ_autocomplete" type="text" id="ssp" name="ssp" value="<?=isset($param['ssp'])? $param['ssp'] : ''?>" />
|
|
|
77 |
</fieldset>
|
|
|
78 |
<br/>
|
|
|
79 |
<fieldset class="publication_form">
|
|
|
80 |
<legend> Publication </legend>
|
|
|
81 |
<br/>
|
|
|
82 |
<label> décrit entre </label>
|
967 |
delphine |
83 |
<input placeholder="<?=$i18n['valeur-form-date']?>" type="text" name="and" id="and" value="<? if (isset($param['and'])){echo $param['and'] ;}?>" class="largeur-01"/>
|
|
|
84 |
|
728 |
mathilde |
85 |
<label style="width:20px;"> et </label>
|
967 |
delphine |
86 |
<input placeholder="<?=$i18n['valeur-form-date']?>" type="text" id="anf" name="anf" value="<? if (isset($param['anf'])){echo $param['anf'] ;}?>" class="largeur-01"/>
|
|
|
87 |
|
728 |
mathilde |
88 |
<label style="width:50px;"> par </label>
|
967 |
delphine |
89 |
<input placeholder="<?=$i18n['valeur-form-auteur']?>" class="champ_autocomplete" style="width:150px;" id="au" type="text" name="au" value="<? if (isset($param['au'])){ echo $param['au']; } ?>"/> <br/><br/>
|
|
|
90 |
|
728 |
mathilde |
91 |
<label> dans </label>
|
967 |
delphine |
92 |
<input placeholder="<?=$i18n['valeur-form-bib']?>" class="champ_autocomplete largeur-06" id="bib" type="text" name="bib" value="<? if(isset($param['bib'])){echo $param['bib'] ;}?>" "/>
|
728 |
mathilde |
93 |
</fieldset>
|
|
|
94 |
<fieldset class="presence_form">
|
|
|
95 |
<legend> Présence </legend>
|
|
|
96 |
<br/>
|
996 |
aurelien |
97 |
<? foreach($champs_presence as $presence) : ?>
|
|
|
98 |
<? $nom_param_presence = $presence['param'] ?>
|
|
|
99 |
<? $param_presence = ''; if (isset($param[$nom_param_presence])){ $param_presence = $param[$nom_param_presence]; }?>
|
|
|
100 |
<label for="<?= $nom_param_presence ?>"><?= $presence['label'] ?></label>
|
|
|
101 |
<select name="<?= $nom_param_presence ?>">
|
|
|
102 |
<option value="" <?=($param_presence == '') ? 'selected="selected"' : '' ?> >
|
|
|
103 |
</option>
|
|
|
104 |
<option value="0" <?=($param_presence == '0') ? 'selected="selected"' : '' ?> >
|
|
|
105 |
pas d'information
|
|
|
106 |
</option>
|
|
|
107 |
<option value="P" <?=($param_presence == 'P') ? 'selected="selected"' : '' ?> >
|
|
|
108 |
présent
|
|
|
109 |
</option>
|
|
|
110 |
<option value="S" <?=($param_presence == 'S') ? 'selected="selected"' : '' ?> >
|
|
|
111 |
supposé présent
|
|
|
112 |
</option>
|
|
|
113 |
<option value="D" <?=($param_presence == 'D') ? 'selected="selected"' : '' ?>>
|
|
|
114 |
présence douteuse
|
|
|
115 |
</option>
|
|
|
116 |
<option value="E" <?=($param_presence == 'E') ? 'selected="selected"' : '' ?>>
|
|
|
117 |
éteint </option>
|
|
|
118 |
<option value="F" <?=($param_presence == 'F') ? 'selected="selected"' : '' ?>>
|
|
|
119 |
cité par erreur comme présent
|
|
|
120 |
</option>
|
|
|
121 |
<option value="A" <?=($param_presence == 'A') ? 'selected="selected"' : '' ?>>
|
|
|
122 |
absent
|
|
|
123 |
</option>
|
|
|
124 |
<option value="-" <?=($param_presence == '-') ? 'selected="selected"' : '' ?>>
|
|
|
125 |
autre statut de présence
|
|
|
126 |
</option>
|
|
|
127 |
<option value="E-W" <?=($param_presence == 'E-W') ? 'selected="selected"' : '' ?>>
|
|
|
128 |
disparu
|
|
|
129 |
</option>
|
|
|
130 |
<option value="P-B" <?=($param_presence == 'P-B') ? 'selected="selected"' : '' ?>>
|
|
|
131 |
présence accidentelle
|
|
|
132 |
</option>
|
|
|
133 |
<option value="E-F" <?=($param_presence == 'E-F') ? 'selected="selected"' : '' ?>>
|
|
|
134 |
trouvé en fouille
|
|
|
135 |
</option>
|
|
|
136 |
</select>
|
|
|
137 |
<br/> <br/>
|
|
|
138 |
<? endforeach; ?>
|
728 |
mathilde |
139 |
</fieldset>
|
|
|
140 |
<fieldset class="statuts_form">
|
|
|
141 |
<legend> Statuts </legend>
|
|
|
142 |
<br/>
|
|
|
143 |
<? $sto = ''; if (isset($param['sto'])){ $sto = $param['sto']; }?>
|
|
|
144 |
<label for="sto"> statut d'origine </label>
|
|
|
145 |
<select name="sto">
|
|
|
146 |
<option value="" <?=($sto == '') ? 'selected="selected"' : '' ?>>
|
|
|
147 |
</option>
|
|
|
148 |
<option value="0" <?=($sto == '0') ? 'selected="selected"' : '' ?>>
|
|
|
149 |
pas d'information
|
|
|
150 |
</option>
|
|
|
151 |
<option value="N" <?=($sto == 'N') ? 'selected="selected"' : '' ?>>
|
|
|
152 |
natif (=indigène)
|
|
|
153 |
</option>
|
|
|
154 |
<option value="S" <?=($sto == 'S') ? 'selected="selected"' : '' ?>>
|
|
|
155 |
supposé natif
|
|
|
156 |
</option>
|
|
|
157 |
<option value="D" <?=($sto == 'D') ? 'selected="selected"' : '' ?>>
|
|
|
158 |
origine douteuse
|
|
|
159 |
</option>
|
|
|
160 |
<option value="E" <?=($sto == 'E') ? 'selected="selected"' : '' ?>>
|
|
|
161 |
anciennement natif (éteint)
|
|
|
162 |
</option>
|
|
|
163 |
<option value="F" <?=($sto == 'F') ? 'selected="selected"' : '' ?>>
|
|
|
164 |
cité par erreur comme natif
|
|
|
165 |
</option>
|
|
|
166 |
<option value="A" <?=($sto == 'A') ? 'selected="selected"' : '' ?>>
|
|
|
167 |
non natif
|
|
|
168 |
</option>
|
|
|
169 |
<option value="X" <?=($sto == 'X') ? 'selected="selected"' : '' ?>>
|
|
|
170 |
inapplicable
|
|
|
171 |
</option>
|
|
|
172 |
<option value="-" <?=($sto == '-') ? 'selected="selected"' : '' ?>>
|
|
|
173 |
autre statut d'origine
|
|
|
174 |
</option>
|
|
|
175 |
<option value="N-E" <?=($sto == 'N-E') ? 'selected="selected"' : '' ?>>
|
|
|
176 |
endémique
|
|
|
177 |
</option>
|
|
|
178 |
<option value="N-S" <?=($sto == 'N-S') ? 'selected="selected"' : '' ?>>
|
|
|
179 |
sub-endémique
|
|
|
180 |
</option>
|
|
|
181 |
<option value="S-C" <?=($sto == 'S-C') ? 'selected="selected"' : '' ?>>
|
|
|
182 |
supposé natif cryptogène
|
|
|
183 |
</option>
|
|
|
184 |
</select>
|
|
|
185 |
<br/> <br/>
|
|
|
186 |
|
|
|
187 |
<? $sti = ''; if (isset($param['sti'])){ $sti = $param['sti']; }?>
|
|
|
188 |
<label for="sti"> statut d'introduction </label>
|
|
|
189 |
<select name="sti">
|
|
|
190 |
<option value="" <?=($sti == '') ? 'selected="selected"' : '' ?>>
|
|
|
191 |
</option>
|
|
|
192 |
<option value="0" <?=($sti == '0') ? 'selected="selected"' : '' ?> >
|
|
|
193 |
pas d'information
|
|
|
194 |
</option>
|
|
|
195 |
<option value="I" <?=($sti == 'I') ? 'selected="selected"' : '' ?>>
|
|
|
196 |
introduit
|
|
|
197 |
</option>
|
|
|
198 |
<option value="S" <?=($sti == 'S') ? 'selected="selected"' : '' ?>>
|
|
|
199 |
supposé introduit
|
|
|
200 |
</option>
|
|
|
201 |
<option value="D" <?=($sti == 'D') ? 'selected="selected"' : '' ?>>
|
|
|
202 |
introduction douteuse
|
|
|
203 |
</option>
|
|
|
204 |
<option value="E" <?=($sti == 'E') ? 'selected="selected"' : '' ?>>
|
|
|
205 |
anciennement introduit (éteint)
|
|
|
206 |
</option>
|
|
|
207 |
<option value="F" <?=($sti == 'F') ? 'selected="selected"' : '' ?>>
|
|
|
208 |
cité par erreur comme introduit
|
|
|
209 |
</option>
|
|
|
210 |
<option value="A" <?=($sti == 'A') ? 'selected="selected"' : '' ?>>
|
|
|
211 |
non introduit
|
|
|
212 |
</option>
|
|
|
213 |
<option value="X" <?=($sti == 'X') ? 'selected="selected"' : '' ?>>
|
|
|
214 |
inapplicable
|
|
|
215 |
</option>
|
|
|
216 |
<option value="-" <?=($sti == '-') ? 'selected="selected"' : '' ?>>
|
|
|
217 |
autre statut d'introduction
|
|
|
218 |
</option>
|
|
|
219 |
<option value="I-J" <?=($sti == 'I-J') ? 'selected="selected"' : '' ?>>
|
|
|
220 |
introduit envahissant
|
|
|
221 |
</option>
|
|
|
222 |
<option value="I-M" <?=($sti == 'I-M') ? 'selected="selected"' : '' ?>>
|
|
|
223 |
domestique, introduit non-établi
|
|
|
224 |
</option>
|
|
|
225 |
<option value="S-C" <?=($sti == 'S-C') ? 'selected="selected"' : '' ?>>
|
|
|
226 |
supposé introduit cryptogène
|
|
|
227 |
</option>
|
|
|
228 |
</select>
|
|
|
229 |
<br/> <br/>
|
|
|
230 |
<label for="stc"> statut de culture </label>
|
|
|
231 |
<? $stc = ''; if (isset($param['stc'])){ $stc = $param['stc']; }?>
|
|
|
232 |
<select name="stc">
|
|
|
233 |
<option value="" <?=($stc == '') ? 'selected="selected"' : '' ?>>
|
|
|
234 |
</option>
|
|
|
235 |
<option value="0" <?=($stc == '0') ? 'selected="selected"' : '' ?>>
|
|
|
236 |
pas d'information
|
|
|
237 |
</option>
|
|
|
238 |
<option value="C" <?=($stc == 'C') ? 'selected="selected"' : '' ?>>
|
|
|
239 |
cultivé en extérieur
|
|
|
240 |
</option>
|
|
|
241 |
<option value="I" <?=($stc == 'I') ? 'selected="selected"' : '' ?>>
|
|
|
242 |
cultivé en intérieur
|
|
|
243 |
</option>
|
|
|
244 |
<option value="S" <?=($stc == 'S') ? 'selected="selected"' : '' ?>>
|
|
|
245 |
supposé cultivé
|
|
|
246 |
</option>
|
|
|
247 |
<option value="D" <?=($stc == 'D') ? 'selected="selected"' : '' ?>>
|
|
|
248 |
culture douteuse
|
|
|
249 |
</option>
|
|
|
250 |
<option value="E" <?=($stc == 'E') ? 'selected="selected"' : '' ?>>
|
|
|
251 |
anciennement cultivé (éteint)
|
|
|
252 |
</option>
|
|
|
253 |
<option value="F" <?=($stc == 'F') ? 'selected="selected"' : '' ?>>
|
|
|
254 |
cité par erreur comme cultivé
|
|
|
255 |
</option>
|
|
|
256 |
<option value="X" <?=($stc == 'X') ? 'selected="selected"' : '' ?>>
|
|
|
257 |
inapplicable
|
|
|
258 |
</option>
|
|
|
259 |
<option value="-" <?=($stc == '-') ? 'selected="selected"' : '' ?>>
|
|
|
260 |
autre statut de culture
|
|
|
261 |
</option>
|
|
|
262 |
<option value="A" <?=($stc == 'A') ? 'selected="selected"' : '' ?>>
|
|
|
263 |
non cultivé
|
|
|
264 |
</option>
|
|
|
265 |
</select>
|
|
|
266 |
</fieldset>
|
|
|
267 |
<input id="eflore_nomenclature_referentiel" name="referentiel" type="hidden" value="<?=Registre::get('parametres.referentiel')?>" />
|
|
|
268 |
<input id="eflore_nomenclature_niveau" name="niveau" type="hidden" value="<?=Registre::get('parametres.niveau')?>" />
|
|
|
269 |
<input id="eflore_nomenclature_module" name="module" type="hidden" value="recherche" />
|
|
|
270 |
<input id="eflore_nomenclature_action" name="action" type="hidden" value="rechercheAvancee" />
|
|
|
271 |
<input type="hidden" name="type_nom" value="nom_scientifique" />
|
|
|
272 |
<input type="submit" class="rech" value="Lancer la recherche avancée"/>
|
|
|
273 |
</form>
|
|
|
274 |
<hr class="nettoyage"/>
|
|
|
275 |
</div>
|
|
|
276 |
|
|
|
277 |
<? if (isset($message_av)) : ?>
|
|
|
278 |
<p class="attention">
|
|
|
279 |
<?= $i18n[$message_av['attention']] ?>
|
|
|
280 |
</p>
|
|
|
281 |
<? endif; ?>
|
|
|
282 |
|
|
|
283 |
<!-- FIN FORM_AVANCE -->
|