Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 162 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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