Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 1020 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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