Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 1243 Rev 1406
Line 1... Line 1...
1
<div class="onglet_contenu" id="statut">
1
<div class="onglet_contenu" id="statut">
2
	<h2>Statuts de protection</h2>
2
	<h2>Statuts de protection</h2>
3
	<?php if(!empty($statuts) && isset($statuts[0])) { ?>
3
	<?php if(!empty($statuts) && is_array($statuts)) { ?>
4
	<table class="liste_statuts_protection">
4
	<table class="liste_statuts_protection largeur-11">
5
		<tr>
5
		<tr>
6
			<th>Zone géographique</th><th>Règle appliquée</th><th>Texte</th>
6
			<th>Zone géographique</th><th>Règle appliquée</th><th>Texte</th><th class="largeur-01">Nom</th>
7
		</tr>
7
		</tr>
8
		<?php if ($statuts != array()) : ?>
8
		<?php if ($statuts != array()) : ?>
9
			<?php foreach ($statuts as $index => $statut) : ?>
9
			<?php foreach ($statuts as $za => $lois) : ?>
10
				<?php if(is_numeric($index)) { ?>
10
				<?php if($za != "meta") : ?>
-
 
11
				<?php foreach ($lois as $loi) : ?>
11
				<tr>
12
					<tr>
12
					<td><?= $statut['zone_application']; ?></td>
13
						<td><?= $za; ?></td>
13
					<td><?= $statut['regle']; ?></td>
14
						<td><?= $loi['regle']; ?></td>
-
 
15
						<td>
-
 
16
							<?php if($loi['hyperlien_legifrance'] != "") : ?>
14
					<td><a class="lien_externe" title="Voir le texte de loi relatif" href="<?= $statut['hyperlien_legifrance']; ?>">
17
								<a class="lien_externe" title="Voir le texte de loi relatif" href="<?= $loi['hyperlien_legifrance']; ?>">
15
							<?= $statut['texte']; ?>
18
									<?= $loi['texte']; ?>
16
						</a> 
19
								</a> 
-
 
20
							<?php else : ?>
-
 
21
								<?= $loi['texte']; ?>
-
 
22
							<?php endif; ?>
17
						(<?= $statut['statut']; ?>)
23
							(<?= $loi['statut']; ?>)
18
					</td>
24
						</td>
-
 
25
						<td><i><?php foreach ($loi['nom_sci'] as $nom_sci) { echo "- ".$nom_sci."<br /><br />"; } ?></i></td>
19
				</tr>
26
					</tr>
-
 
27
				<?php endforeach; ?>
20
				<?php } ?>
28
				<?php endif; ?>
21
			<?php endforeach; ?>
29
			<?php endforeach; ?>
22
		<?php endif; ?>
30
		<?php endif; ?>
23
	</table>
31
	</table>
24
	<div class="conteneur_lien_metadonnees">
32
	<div class="conteneur_lien_metadonnees">
25
		<?=$statuts['meta']['citation']?>
33
		<?=$statuts['meta']['citation']?>