33 |
jpm |
1 |
<!-- DEBUT FORM_TAXON -->
|
|
|
2 |
<form id="eflore_form_taxonomie" name="eflore_form_taxonomie" action="<?=$url_form;?>" method="get">
|
|
|
3 |
<fieldset>
|
|
|
4 |
<legend><?=$i18n['form_legende'];?></legend>
|
|
|
5 |
<table>
|
|
|
6 |
<tr>
|
|
|
7 |
<td>
|
|
|
8 |
<?php if ($referentiel_unique == true) : ?>
|
|
|
9 |
<input id="eflore_referentiel" name="eflore_referentiel" type="hidden" value="<?=$referentiel_unique_id;?>"/>
|
|
|
10 |
<?php else : ?>
|
|
|
11 |
<label for="eflore_referentiel_intitule"><?=$i18n['form_referentiel'];?></label>
|
|
|
12 |
<select id="eflore_referentiel" name="eflore_referentiel">
|
|
|
13 |
<?php foreach ($referentiels as $referentiel) : ?>
|
|
|
14 |
<?php if ($referentiel['historique'] == false) : ?>
|
|
|
15 |
<option value="<?=$referentiel['id'];?>" title="<?=$referentiel['abreviation'];?> (version <?=$referentiel['code'];?>) - Auteur principal : <?=$referentiel['auteur'];?>" <?=($eflore_referentiel_selected == $referentiel['id']) ? 'selected="selected"' : '';?> > <?=$referentiel['intitule_court'];?></option>
|
|
|
16 |
<?php endif; ?>
|
|
|
17 |
<?php endforeach; ?>
|
|
|
18 |
</select>
|
|
|
19 |
<?php endif; ?>
|
|
|
20 |
</td>
|
|
|
21 |
<td id="eflore_rang_li">
|
|
|
22 |
<label for="eflore_rang"><?=$i18n['form_rang'];?></label>
|
|
|
23 |
<select id="eflore_rang" name="rg">
|
|
|
24 |
<?php foreach ($rangs as $rang) : ?>
|
|
|
25 |
<option value="<?=$rang['id'];?>" <?=($rang_selected == $rang['id']) ? 'selected="selected"' : '';?>><?=$rang['nom'];?></option>
|
|
|
26 |
<?php endforeach; ?>
|
|
|
27 |
</select>
|
|
|
28 |
</td>
|
|
|
29 |
<td>
|
|
|
30 |
<input id="module" name="module" type="hidden" value="recherche" />
|
|
|
31 |
<input id="action" name="action" type="hidden" value="recherche_taxon" />
|
|
|
32 |
<input id="eflore_taxonomie_submit" type="submit" value="OK" />
|
|
|
33 |
</td>
|
|
|
34 |
</tr>
|
|
|
35 |
</table>
|
|
|
36 |
</fieldset>
|
|
|
37 |
<?php if ($bool_alphabet) : ?>
|
|
|
38 |
<h1><?=$i18n['form_titre_alphabet'];?></h1>
|
|
|
39 |
<p>Plus la couleur de fond de la lettre est fonc�e plus, elle contient de taxons. Son survol avec la souris fait apparaitre le nombre de taxons pr�sents.</p>
|
|
|
40 |
<p id="eft_alphabet">
|
|
|
41 |
<?php foreach ($alphabet as $caractere => $nombre) : ?>
|
|
|
42 |
<input style="background-color: rgb(<?=$couleur[$nombre]['R'];?>,<?=$couleur[$nombre]['V'];?>,<?=$couleur[$nombre]['B'];?>);color:black;" id="eflore_lettre" name="le" type="submit" value="<?=$caractere;?>" title="<?=$nombre;?> taxons" <?=($lettre == $caractere) ? 'disabled="disabled"' : '';?>/>
|
|
|
43 |
<?php endforeach; ?>
|
|
|
44 |
</p>
|
|
|
45 |
<?php endif; ?>
|
|
|
46 |
</form>
|
|
|
47 |
<!-- FIN FORM_TAXON -->
|