Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 854 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
162 jpm 1
<ul class="onglets">
2
<?php if ($typeNom == 'nom_scientifique') : ?>
3
	<?php foreach ($ongletsNs as $onglet) : ?>
4
		<li <?=($typeResultat == $onglet ? 'class="menu_actif"': '')?>>
5
			<a href="<?=$urls[$onglet]?>"><?=$i18n[$onglet]?></a>
6
		</li>
7
	<?php endforeach; ?>
8
<?php elseif ($typeNom == 'nom_vernaculaire') : ?>
9
	<?php foreach ($ongletsNv as $onglet) : ?>
10
		<li <?=($typeResultat == $onglet ? 'class="menu_actif"': '')?>>
11
			<a href="<?=$urls[$onglet]?>"><?=$i18n[$onglet]?></a>
12
		</li>
13
	<?php endforeach; ?>
14
<?php endif; ?>
15
</ul>