Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 853 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 853 Rev 878
Line 41... Line 41...
41
	</fieldset>
41
	</fieldset>
42
</form>
42
</form>
Line 43... Line 43...
43
 
43
 
44
 
44
 
45
<?php if (isset($message)) : ?>
45
<?php if (isset($message)) : ?>
46
	<p class="<?= ($message['attention']) ? 'attention' : 'information'; ?>">
46
	<p class="<?= (isset($message['attention'])) ? 'attention' : 'information'; ?>">
47
		<?= ($message['attention']) ? $i18n[$message['attention']] : ''; ?>
47
		<?= (isset($message['attention'])) ? $i18n[$message['attention']] : ''; ?>
48
		<?= ($message['nom_ss_corresp']) ? $message['nom_ss_corresp']['nom'].$i18n['nom_ss_corresp'].
48
		<?= (isset($message['nom_ss_corresp'])) ? $message['nom_ss_corresp']['nom'].$i18n['nom_ss_corresp'].
49
				'<a href="http://referentiels.tela-botanica.org/referentiel/index.php?ref=bdtfx&module=FicheTaxon&num_nom='.$message['nom_ss_corresp']['id'].'">'.
49
				'<a href="http://referentiels.tela-botanica.org/referentiel/index.php?ref=bdtfx&module=FicheTaxon&num_nom='.$message['nom_ss_corresp']['id'].'">'.
50
				$i18n['reftax'].'</a>' : ''; ?>
50
				$i18n['reftax'].'</a>' : ''; ?>
51
		<?php if (isset($message['nom_approche'])) : ?>
51
		<?php if (isset($message['nom_approche'])) : ?>
52
			<?=$i18n['orthographe'];?>
52
			<?=$i18n['orthographe'];?>
53
			<?php foreach ($message['nom_approche'] as $cle => $nom) :?>
53
			<?php foreach ($message['nom_approche'] as $cle => $nom) :?>
54
				<a href="<?=$nom['url_nom_approche']?>"><?=$nom['nom'];?></a>
54
				<a href="<?=$nom['url_nom_approche']?>"><?=$nom['nom'];?></a>
55
				<?= ($message['nom_approche'][$cle+1]['nom'] != '') ? ' ou ' : ''; ?>
55
				<?= (isset($message['nom_approche'][$cle+1]['nom'])) ? ' ou ' : ''; ?>
56
			<?php endforeach; ?>
56
			<?php endforeach; ?>
57
		<?php endif; ?>
57
		<?php endif; ?>
58
	</p>
58
	</p>