Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

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