Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 700 | Rev 849 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
645 mathilde 1
<!-- ECOLOGIE -->
691 mathilde 2
<div class="bloc no-break">
645 mathilde 3
	<div class="categorie">Ecologie</div>
4
		<? if (!isset($ecologie['baseflor']['aucune'])) : ?>
5
		<div class="no-break">
6
			<h2>Optimum écologique</h2>
7
			<span class="citation"><?=$ecologie['baseflor']['meta']['citation']?></span>
8
			<div class="fond_graphique">
9
				<div class="no-break">
10
					<div class="graphique">
11
						<span class="titre">caractéristiques climatiques</span>
12
						<br/>
13
						 <!-- laisser attribut alt au cas où svg ne marche pas -->
14
						<object class="svg_clim" type="image/svg+xml" data="<?=$ecologie['baseflor']['climat_url']?>" alt="<?=$ecologie['baseflor']['climat_url_png']?>">
15
					</object>
16
					</div>
693 mathilde 17
				</div>
645 mathilde 18
				<div class="no-break">
19
					<div class="graphique">
20
						<span class="titre centrer">caractéristiques du sol</span>
21
						<br/>
22
						 <!-- laisser attribut alt au cas où svg ne marche pas -->
23
						<object  type="image/svg+xml" data="<?=$ecologie['baseflor']['sol_url']?>" class="svg_sol" alt="<?=$ecologie['baseflor']['sol_url_png']?>">
24
					</object>
25
					</div>
26
				<br/>
700 mathilde 27
				<img  src="<?=$ecologie['baseflor']['legende_eco']?>" class="legende_formes"/>
645 mathilde 28
			</div>
29
		</div>
30
		</div>
841 mathilde 31
	<? endif; ?>
32
 
33
		<!-- PHYTOSOCIOLOGIE -->
34
	<div class="no-break">
35
		<h2>Phytosociologie</h2>
36
			<span class="citation"><?=$ecologie['baseveg']['meta']['citation']?></span>
37
		<? if (isset($ecologie['baseveg']['syntaxons-sup']) || isset($ecologie['baseveg']['syntaxons-sup'])) : ?>
38
			<br/>
39
			 Le code catminat de ce taxon est <span class="gras"> <?=$ecologie['baseveg']['baseflor']['catminat'] ?></span> </br>
40
			 Il est caractéristique du syntaxon de niveau <span class="gras"><?=$ecologie['baseveg']['syntaxon-courant'][0]['niveau.libelle']?></span> présenté
41
			 dans le tableau ci-dessous avec ses niveaux supérieurs.
42
			<table>
43
				<?php foreach ($ecologie['baseveg']['syntaxons-sup'] as $cle => $valeurs ) : ?>
44
					<tr>
45
						<td>
46
							<span class="gras">
47
								<?=$valeurs['code_catminat']?>
48
							</span></br>
49
							<?=$valeurs['niveau.libelle']?>
50
						</td>
51
						<td>
52
							<span class="gras">
53
								<?=$valeurs['syntaxon']?>
54
							</span> </br>
55
							<span >
56
								<?=$valeurs['physio_biotype']?>
57
							</span> </br>
58
							<?= !empty($valeurs['repartition_france']) ? 'répartition : '.$valeurs['repartition_france'] : '' ?>
59
							</br>
60
							Réf. <?=$valeurs['ref_der_biblio']?>
61
						</td>
62
					</tr>
63
				<? endforeach; ?>
64
					<tr class="surlignage">
65
						<td>
66
						<span class="gras">
67
							<?=$ecologie['baseveg']['syntaxon-courant'][0]['code_catminat']?>
68
						</span></br>
69
							<?=$ecologie['baseveg']['syntaxon-courant'][0]['niveau.libelle']?>
70
						</td>
71
						<td>
72
							<span class="gras">
73
								<?=$ecologie['baseveg']['syntaxon-courant'][0]['syntaxon']?>
74
							</span> </br>
75
							<span >
76
								<?=$ecologie['baseveg']['syntaxon-courant'][0]['physio_biotype']?>
77
							</span> </br>
78
							<?= !empty($ecologie['baseveg']['syntaxon-courant'][0]['repartition_france']) ? 'rép.'.$ecologie['baseveg']['syntaxon-courant'][0]['repartition_france'] : ''?>
79
							</br>
80
							Réf. <?=$ecologie['baseveg']['syntaxon-courant'][0]['ref_der_biblio']?>
81
						</td>
82
					</tr>
83
			</table>
84
			<? else : ?>
85
				Aucune Donnée.
86
			<? endif; ?>
87
		</div>
88
 
89
 
90
 
91
 
645 mathilde 92
		<!-- VIDE DE DONNEES -->
93
		<? if (isset($ecologie['baseflor']['aucune'])) : ?>
94
			Aucune donnée.
95
		<? endif; ?>
841 mathilde 96
 
97
 
98
 
99
</div>
693 mathilde 100
 
645 mathilde 101
	<br/>
102
 
691 mathilde 103