Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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