Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev Author Line No. Line
1210 mathias 1
<!-- onglet "Tableau" -->
187 jpm 2
<p>
3
Rechercher sur
429 delphine 4
	<a href="http://www.theplantlist.org/tpl/search?q=<?=htmlentities($masqueRecherche)?>">
5
		<img src="<?=$baseUrlIco?>presentations/images/sites/tpl.png" alt="The Plant List"
6
			title="Rechercher dans The Plant List"/>
187 jpm 7
	</a>
429 delphine 8
	<a href="http://www.ipni.org/ipni/simplePlantNameSearch.do?find_wholeName=<?=htmlentities($masqueRecherche)?>&amp;output_format=normal&amp;query_type=by_query&amp;back_page=query_ipni.html">
187 jpm 9
		<img src="<?=$baseUrlIco?>presentations/images/sites/ipni.png" alt="IPNI" title="Rechercher dans IPNI"/>
10
	</a>
429 delphine 11
	<a href="http://plants.jstor.org/search?plantName=%22<?=htmlentities($masqueRecherche)?>%22&amp;syn=1">
12
		<img src="<?=$baseUrlIco?>presentations/images/sites/jstor.png" alt="JSTOR Plant Science" title="Rechercher dans JSTOR Plant Science" />
187 jpm 13
	</a>
429 delphine 14
	<a href="http://coldb.mnhn.fr/Consultation?filtre=motif&amp;motif=<?=htmlentities($masqueRecherche)?>">
15
		<img src="<?=$baseUrlIco?>presentations/images/sites/mnhn.png" alt="Muséum national d'Histoire naturelle" title="Rechercher dans Muséum national d'Histoire naturelle" />
187 jpm 16
	</a>
429 delphine 17
	<a href="http://www.anbg.gov.au/cgi-bin/apni?TAXON_NAME=<?=htmlentities($masqueRecherche)?>">
18
		<img src="<?=$baseUrlIco?>presentations/images/sites/anbg.png" alt="Australian Plant Name Index" title="Rechercher dans Australian Plant Name Index" />
187 jpm 19
	</a>
429 delphine 20
	<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=<?=htmlentities($masqueRecherche)?>">
21
		<img src="<?=$baseUrlIco?>presentations/images/sites/nybg.png" alt="NYBG Virtual Herbarium" title="Rechercher dans NYBG Virtual Herbarium" />
187 jpm 22
	</a>
429 delphine 23
	<a href="http://collections.mnh.si.edu/search/botany/?qt=<?=htmlentities($masqueRecherche)?>">
24
		<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" />
187 jpm 25
	</a>
429 delphine 26
	<a href="http://herbarium.univie.ac.at/database/search.php?taxon=<?=htmlentities($masqueRecherche)?>&amp;search=1">
27
		<img src="<?=$baseUrlIco?>presentations/images/sites/vha.png" alt="Virtual Herbaria Austria" title="Rechercher dans Virtual Herbaria Austria" />
187 jpm 28
	</a>
429 delphine 29
	<a href="http://swbiodiversity.org/seinet/taxa/index.php?taxon=<?=htmlentities($masqueRecherche)?>">
30
		<img src="<?=$baseUrlIco?>presentations/images/sites/seinet.png" alt="SEINet" title="Rechercher dans SEINet" />
187 jpm 31
	</a>
429 delphine 32
	<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=<?=htmlentities($masqueRecherche)?>">
33
		<img src="<?=$baseUrlIco?>presentations/images/sites/cjb.png" alt="African Plants Database" title="Rechercher dans African Plants Database du Jardin Botanique de Genève" />
187 jpm 34
	</a>
35
</p>
149 jpm 36
<table id="ef-resultats-decomposition">
37
	<thead>
38
		<tr>
39
			<th id="col-ns">Nom scientifique</th>
40
			<th>Auteur</th>
41
			<th>Année</th>
42
			<th>Référence bibliographique</th>
43
			<th title="Commentaires nomenclaturaux ou taxonomiques concernant le nom scientifique">Nom addendum</th>
44
			<th title="Identifiant numérique du nom scientifique">N° nom</th>
45
		</tr>
46
	</thead>
47
	<tbody>
48
	<? $i = 1 ?>
49
	<? foreach ($noms as $nom) : ?>
50
		<tr
931 delphine 51
			class="<?=$nom['retenu'] === 'true' ? 'retenu' : 'synonyme' ?>"
149 jpm 52
			title="Ligne #<?=$i++?>">
53
			<td>
718 delphine 54
				<? if ($nom['retenu'] !== 'absent') :  ?>
55
					<a href="<?=$nom['urlFiche']?>"><?=$nom['nomSci']?></a>
56
				<? else : ?><?=$nom['nomSci']?>
57
				<? endif; ?>
149 jpm 58
			</td>
59
			<td><?=$nom['auteur']?></td>
60
			<td><?=$nom['annee']?></td>
61
			<td><?=$nom['biblio']?></td>
62
			<td><?=$nom['addendum']?></td>
63
			<td><?=$nom['nn']?></td>
64
		</tr>
65
	<? endforeach; ?>
66
	</tbody>
67
</table>