Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 1020 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
639 mathilde 1
<!-- STATUTS de protection -->
671 mathilde 2
<div class="bloc <? if ($premier == 'statuts') : echo 'allow-break'; else : echo 'no-break'; endif; ?>">
639 mathilde 3
	<h2 class= "categorie">Statuts de protection</h2>
4
 
848 mathilde 5
	<!-- STATUTS -->
6
	<?php if(!empty($statuts['statuts'])) : ?>
7
	<table class="liste_statuts_protection no-break">
8
		<tr>
9
			<th>Zone géographique</th><th>Règle appliquée</th><th>Texte</th>
10
		</tr>
11
 
12
			<?php foreach ($statuts['statuts'] as $statut) : ?>
1501 delphine 13
				<?php if ($statut != array()) : ?>
14
					<tr>
15
						<td>
16
							<?= $statut['zone_application']; ?>
17
						</td>
18
						<td>
19
							<?= $statut['regle']; ?>
20
						</td>
21
						<td>
22
							<?= $statut['texte']; ?>
23
							(<?= $statut['statut']; ?>)
24
						</td>
25
					</tr>
26
				<?php endif; ?>
848 mathilde 27
			<?php endforeach; ?>
28
 
29
	</table>
30
<?php endif; ?>
31
 
639 mathilde 32
	<!-- WIKI -->
33
	<? if(!empty($statuts['wikini']['statuts_de_protection'])) : ?>
34
	<div class="no-break">
35
		<h2>Vos compléments sur les statuts de protection :</h2>
36
		<span>Données collaboratives sur les statuts de protection. </span>
669 mathilde 37
		<div class="allow-break wiki" title="statuts de protection">
639 mathilde 38
			<?=$statuts['wikini']['statuts_de_protection']?>
39
		</div>
40
	</div>
41
	<? endif;?>
42
 
43
	<!-- VIDE DE DONNEES -->
848 mathilde 44
	<? if (empty($statuts['wikini']['statuts_de_protection']) && empty($statuts['statuts']) ): ?>
1020 raphael 45
		Pas de protection connue.
639 mathilde 46
	<? endif;?>
47
 
48
</div>
49
<br/>
50
<br/>
51