Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev Author Line No. Line
187 jpm 1
<p>
2
Rechercher sur
3
	<a href="http://www.theplantlist.org/tpl/search?q=<?=$masqueRecherche?>">
4
		<img src="<?=$baseUrlIco?>presentations/images/sites/tpl.png" alt="The Plant List" title="Rechercher dans The Plant List"/>
5
	</a>
6
	<a href="http://www.ipni.org/ipni/simplePlantNameSearch.do?find_wholeName=<?=$masqueRecherche?>&output_format=normal&query_type=by_query&back_page=query_ipni.html">
7
		<img src="<?=$baseUrlIco?>presentations/images/sites/ipni.png" alt="IPNI" title="Rechercher dans IPNI"/>
8
	</a>
9
	<a href="http://plants.jstor.org/search?plantName=%22<?=$masqueRecherche?>%22&amp;syn=1">
10
		<img src="<?=$baseUrlIco?>presentations/images/sites/jstor.png" alt="JSTOR Plant Science" title="Rechercher dans JSTOR Plant Science">
11
	</a>
12
	<a href="http://coldb.mnhn.fr/Consultation?filtre=motif&amp;motif=<?=$masqueRecherche?>">
13
		<img src="<?=$baseUrlIco?>presentations/images/sites/mnhn.png" alt="Muséum national d'Histoire naturelle" title="Rechercher dans Muséum national d'Histoire naturelle"/>
14
	</a>
15
	<a href="http://www.anbg.gov.au/cgi-bin/apni?TAXON_NAME=<?=$masqueRecherche?>">
16
		<img src="<?=$baseUrlIco?>presentations/images/sites/anbg.png" alt="Australian Plant Name Index" title="Rechercher dans Australian Plant Name Index"/>
17
	</a>
18
	<a href="http://sweetgum.nybg.org/vh/specimen_list.php?QueryName=BasicQuery&amp;QueryPage=http%3A%2F%2Fsciweb.nybg.org%2Fscience2%2Fvii2.asp&amp;Restriction=NybRecordType+%3D+%27Specimen%27&amp;StartAt=1&amp;any=SummaryData%7CAdmWebMetadata&amp;QueryOption=any&amp;Submit=Search&amp;QueryTerms=<?=$masqueRecherche?>">
19
		<img src="<?=$baseUrlIco?>presentations/images/sites/nybg.png" alt="NYBG Virtual Herbarium" title="Rechercher dans NYBG Virtual Herbarium"/>
20
	</a>
21
	<a href="http://collections.mnh.si.edu/search/botany/?qt=<?=$masqueRecherche?>">
22
		<img src="<?=$baseUrlIco?>presentations/images/sites/si.png" alt="Type Specimen Register of the U.S. National Herbarium" title="Rechercher dans Type Specimen Register of the U.S. National Herbarium">
23
	</a>
24
	<a href="http://herbarium.univie.ac.at/database/search.php?taxon=<?=$masqueRecherche?>&amp;search=1">
25
		<img src="<?=$baseUrlIco?>presentations/images/sites/vha.png" alt="Virtual Herbaria Austria" title="Rechercher dans Virtual Herbaria Austria">
26
	</a>
27
	<a href="http://swbiodiversity.org/seinet/taxa/index.php?taxon=<?=$masqueRecherche?>">
28
		<img src="<?=$baseUrlIco?>presentations/images/sites/seinet.png" alt="SEINet" title="Rechercher dans SEINet">
29
	</a>
30
	<a href="http://www.ville-ge.ch/musinfo/bd/cjb/africa/resultat.php?efFamille=&amp;projet%5B%5D=FSA&amp;projet%5B%5D=FTA&amp;projet%5B%5D=FNA&amp;projet%5B%5D=BDM&amp;langue=en&amp;pbRecherche=Rechercher&amp;efNom=<?=$masqueRecherche?>">
31
		<img src="<?=$baseUrlIco?>presentations/images/sites/cjb.png" alt="African Plants Database" title="Rechercher dans African Plants Database du Jardin Botanique de Genève"/>
32
	</a>
33
</p>
149 jpm 34
<table id="ef-resultats-decomposition">
35
	<thead>
36
		<tr>
37
			<th id="col-ns">Nom scientifique</th>
38
			<th>Auteur</th>
39
			<th>Année</th>
40
			<th>Référence bibliographique</th>
41
			<th title="Commentaires nomenclaturaux ou taxonomiques concernant le nom scientifique">Nom addendum</th>
42
			<th title="Identifiant numérique du nom scientifique">N° nom</th>
43
		</tr>
44
	</thead>
45
	<tbody>
46
	<? $i = 1 ?>
47
	<? foreach ($noms as $nom) : ?>
48
		<tr
49
			class="<?=$nom['retenu'] === true ? 'retenu' : 'synonyme' ?>"
50
			title="Ligne #<?=$i++?>">
51
			<td>
52
				<a href="<?=$nom['urlFiche']?>"><?=$nom['nomSci']?></a>
53
			</td>
54
			<td><?=$nom['auteur']?></td>
55
			<td><?=$nom['annee']?></td>
56
			<td><?=$nom['biblio']?></td>
57
			<td><?=$nom['addendum']?></td>
58
			<td><?=$nom['nn']?></td>
59
		</tr>
60
	<? endforeach; ?>
61
	</tbody>
62
</table>