Subversion Repositories Applications.referentiel

Rev

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

Rev Author Line No. Line
69 delphine 1
<!-- REF - DEBUT RESULTAT -->
2
<div id="ref-resultat-recherche">
125 delphine 3
	<br /><br />
83 delphine 4
	<?=$fragmenteur ?>
74 delphine 5
	<? if (isset($resultats)) : ?>
69 delphine 6
		<table>
7
			<thead>
8
				<tr>
112 delphine 9
					<th title="Identifiant numérique du nom scientifique">Id</th>
69 delphine 10
					<th>Nom scientifique</th>
11
					<th>Auteur</th>
12
					<th>Année</th>
13
					<th>Référence bibliographique</th>
14
					<th>Nom addendum</th>
15
				</tr>
16
			</thead>
17
			<tbody>
83 delphine 18
				<? foreach ($resultats as $resultat) : ?>
19
					<tr <?=($resultat['num_nom'] == $resultat['num_nom_retenu']) ? 'class="nom_retenu"' : '' ?>>
20
						<td><a href="<?=Recherche::getUrlFicheTaxon($resultat)?>"><?=$resultat['num_nom']?></a></td>
162 delphine 21
						<td><a href="<?=Recherche::getUrlFicheTaxon($resultat)?>"><?=$resultat['nom_sci']?></a>
22
							<? if ($resultat['nom_sci'] != '') : ?>
23
								<a href="<?=Recherche::getUrlRecherche($resultat['nom_sci'], $referentiel)?>">
24
									<img src="./interfaces/squelettes/css/referentiel/images/data_query.png" alt="rechercher"/>
25
								</a>
26
							<? endif; ?>
27
						</td>
28
						<td><?=$resultat['auteur']?>
29
							<? if ($resultat['auteur'] != '') : ?>
30
								<a href="<?=Recherche::getUrlRecherche('au:'.$resultat['auteur'], $referentiel)?>">
31
									<img src="./interfaces/squelettes/css/referentiel/images/data_query.png" alt="rechercher"/>
32
								</a>
33
							<? endif; ?>
34
						</td>
35
						<td><?=$resultat['annee']?>
36
							<? if ($resultat['annee'] != '') : ?>
37
								<a href="<?=Recherche::getUrlRecherche('an:'.$resultat['annee'], $referentiel)?>">
38
									<img src="./interfaces/squelettes/css/referentiel/images/data_query.png" alt="rechercher"/>
39
								</a>
40
							<? endif; ?>
41
						</td>
42
						<td><?=$resultat['biblio_origine']?>
43
							<? if ($resultat['biblio_origine'] != '') : ?>
44
								<a href="<?=Recherche::getUrlRecherche('bib:'.$resultat['biblio_origine'], $referentiel)?>">
45
									<img src="./interfaces/squelettes/css/referentiel/images/data_query.png" alt="rechercher"/>
46
								</a>
47
							<? endif; ?>
48
						</td>
49
						<td><?=$resultat['nom_addendum']?>
50
							<? if ($resultat['nom_addendum'] != '') : ?>
51
								<a href="<?=Recherche::getUrlRecherche('mots:',$resultat['nom_addendum'], $referentiel)?>">
52
									<img src="./interfaces/squelettes/css/referentiel/images/data_query.png" alt="rechercher"/>
53
								</a>
54
							<? endif; ?>
55
						</td>
83 delphine 56
					</tr>
57
				<? endforeach; ?>
74 delphine 58
			</tbody>
69 delphine 59
		</table>
74 delphine 60
	<? endif; ?>
69 delphine 61
</div>
62
<!-- REF - FIN RESULTAT -->