Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 1301 | Details | Compare with Previous | 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) : ?>
854 mathilde 4
		<li <?=($typeResultat == $onglet ? 'class="menu_actif sci"': 'class="sci"')?> >
5
			<a href="<?=$urls[$onglet]?>"><?=$i18n['ns'][$onglet]?></a>
162 jpm 6
		</li>
7
	<?php endforeach; ?>
8
<?php elseif ($typeNom == 'nom_vernaculaire') : ?>
9
	<?php foreach ($ongletsNv as $onglet) : ?>
854 mathilde 10
		<li <?=($typeResultat == $onglet ? 'class="menu_actif verna"': 'class="verna"')?> >
11
			<a href="<?=$urls[$onglet]?>"><?=$i18n['nv'][$onglet]?></a>
162 jpm 12
		</li>
13
	<?php endforeach; ?>
14
<?php endif; ?>
15
</ul>