Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 841 | Rev 1015 | 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">
849 mathilde 35
	<? if (isset($ecologie['baseveg']['baseflor']['catminat'])) : ?>
841 mathilde 36
		<h2>Phytosociologie</h2>
37
			<span class="citation"><?=$ecologie['baseveg']['meta']['citation']?></span>
38
		<? if (isset($ecologie['baseveg']['syntaxons-sup']) || isset($ecologie['baseveg']['syntaxons-sup'])) : ?>
39
			<br/>
40
			 Le code catminat de ce taxon est <span class="gras"> <?=$ecologie['baseveg']['baseflor']['catminat'] ?></span> </br>
41
			 Il est caractéristique du syntaxon de niveau <span class="gras"><?=$ecologie['baseveg']['syntaxon-courant'][0]['niveau.libelle']?></span> présenté
42
			 dans le tableau ci-dessous avec ses niveaux supérieurs.
43
			<table>
44
				<?php foreach ($ecologie['baseveg']['syntaxons-sup'] as $cle => $valeurs ) : ?>
45
					<tr>
46
						<td>
47
							<span class="gras">
48
								<?=$valeurs['code_catminat']?>
49
							</span></br>
50
							<?=$valeurs['niveau.libelle']?>
51
						</td>
52
						<td>
53
							<span class="gras">
54
								<?=$valeurs['syntaxon']?>
55
							</span> </br>
56
							<span >
57
								<?=$valeurs['physio_biotype']?>
58
							</span> </br>
59
							<?= !empty($valeurs['repartition_france']) ? 'répartition : '.$valeurs['repartition_france'] : '' ?>
60
							</br>
61
							Réf. <?=$valeurs['ref_der_biblio']?>
62
						</td>
63
					</tr>
64
				<? endforeach; ?>
65
					<tr class="surlignage">
66
						<td>
67
						<span class="gras">
68
							<?=$ecologie['baseveg']['syntaxon-courant'][0]['code_catminat']?>
69
						</span></br>
70
							<?=$ecologie['baseveg']['syntaxon-courant'][0]['niveau.libelle']?>
71
						</td>
72
						<td>
73
							<span class="gras">
74
								<?=$ecologie['baseveg']['syntaxon-courant'][0]['syntaxon']?>
75
							</span> </br>
76
							<span >
77
								<?=$ecologie['baseveg']['syntaxon-courant'][0]['physio_biotype']?>
78
							</span> </br>
79
							<?= !empty($ecologie['baseveg']['syntaxon-courant'][0]['repartition_france']) ? 'rép.'.$ecologie['baseveg']['syntaxon-courant'][0]['repartition_france'] : ''?>
80
							</br>
81
							Réf. <?=$ecologie['baseveg']['syntaxon-courant'][0]['ref_der_biblio']?>
82
						</td>
83
					</tr>
84
			</table>
849 mathilde 85
			<?endif;?>
86
		<?endif;?>
841 mathilde 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