Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 671 Rev 848
Line 1... Line 1...
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>
Line -... Line 4...
-
 
4
	
-
 
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) : ?>
-
 
13
				<tr>
-
 
14
					<td>
-
 
15
						<?= $statut['zone_application']; ?>
-
 
16
					</td>
-
 
17
					<td>
-
 
18
						<?= $statut['regle']; ?>
-
 
19
					</td>
-
 
20
					<td>
-
 
21
						<?= $statut['texte']; ?>
-
 
22
						(<?= $statut['statut']; ?>)
-
 
23
					</td>
-
 
24
				</tr>
-
 
25
			<?php endforeach; ?>
-
 
26
	
-
 
27
	</table>
-
 
28
<?php endif; ?>
4
	
29
 
5
	<!-- WIKI -->
30
	<!-- WIKI -->
6
	<? if(!empty($statuts['wikini']['statuts_de_protection'])) : ?>
31
	<? if(!empty($statuts['wikini']['statuts_de_protection'])) : ?>
7
	<div class="no-break">
32
	<div class="no-break">
8
		<h2>Vos compléments sur les statuts de protection :</h2>
33
		<h2>Vos compléments sur les statuts de protection :</h2>
Line 12... Line 37...
12
		</div>
37
		</div>
13
	</div>
38
	</div>
14
	<? endif;?>
39
	<? endif;?>
Line 15... Line 40...
15
	
40
	
16
	<!-- VIDE DE DONNEES -->
41
	<!-- VIDE DE DONNEES -->
17
	<? if (empty($statuts['wikini']['statuts_de_protection'])) : ?>
42
	<? if (empty($statuts['wikini']['statuts_de_protection']) && empty($statuts['statuts']) ): ?>
18
		Ancune donnée.
43
		Ancune donnée.
Line 19... Line 44...
19
	<? endif;?>
44
	<? endif;?>
20
	
45