Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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