Subversion Repositories eFlore/Applications.cel

Rev

Rev 3136 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
580 jpm 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml">
3
	<head>
4
		<title>Photographies publiques du CEL - Tela Botanica</title>
5
 
6
		<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
7
		<meta http-equiv="Content-style-type" content="text/css" />
8
		<meta http-equiv="Content-script-type" content="text/javascript" />
9
		<meta http-equiv="Content-language" content="fr" />
10
 
11
		<meta name="revisit-after" content="15 days" />
12
        <meta name="robots" content="index,follow" />
2516 mathias 13
        <meta name="author" content="Tela Botanica" />
580 jpm 14
        <meta name="keywords" content="Tela Botanica, photographie, CEL" />
15
        <meta name="description" content="Widget de présentation des dernières photo publiées sur le Carnet en Ligne de Tela Botanica" />
16
 
2515 mathias 17
		<!-- OpenGraph pour Facebook, Pinterest, Google+ -->
18
		<meta property="og:type" content="website" />
19
		<meta property="og:title" content="Widget photo du CeL" />
20
		<meta property="og:site_name" content="Tela Botanica" />
21
		<meta property="og:description" content="Mini-galerie photo des observations publiques du Carnet en Ligne" />
2517 mathias 22
		<?php
23
			if (isset($items[0])) {
24
				$iz = $items[0];
2518 mathias 25
				$izUrl = sprintf($iz['url_tpl'], 'CRS');
2517 mathias 26
				echo '<meta property="og:image" content="' . $izUrl . '" />';
27
			} else {
2993 mathias 28
				echo '<meta property="og:image" content="https://resources.tela-botanica.org/tb/img/256x256/carre_englobant.png" />'
2517 mathias 29
					.'<meta property="og:image:type" content="image/png" />'
30
					.'<meta property="og:image:width" content="256" />'
31
					.'<meta property="og:image:height" content="256" />';
32
			}
33
		?>
2515 mathias 34
		<meta property="og:locale" content="fr_FR" />
35
 
580 jpm 36
		<!-- Spécial mobile -->
37
		<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
38
 
39
		<!-- Favicones -->
2993 mathias 40
		<link rel="icon" type="image/png" href="https://resources.tela-botanica.org/tb/img/16x16/favicon.png" />
41
		<link rel="shortcut icon" type="image/x-icon" href="https://resources.tela-botanica.org/tb/img/16x16/favicon.ico" />
580 jpm 42
 
43
		<!-- Feuilles de styles -->
2999 mathias 44
		<link rel="stylesheet" type="text/css" href="https://www.tela-botanica.org/commun/jquery/fancybox/1.3.4/jquery.fancybox-1.3.4.css" media="screen" />
580 jpm 45
		<link rel="stylesheet" type="text/css" href="<?=$url_css?>photo.css" media="screen" />
583 jpm 46
		<style type="text/css">
587 jpm 47
			html {
48
				overflow:hidden;
583 jpm 49
			}
587 jpm 50
			body{
51
				overflow:hidden;
52
				padding:0;
53
				margin:0;
54
				width:100%;
55
				height:100%;
1462 aurelien 56
				background-color:#DDDDDD;
57
				color:black;
583 jpm 58
			}
879 jpm 59
			#cel-photo-contenu<?=$id?>, #cel-galerie-photo<?=$id?>{
587 jpm 60
				width:<?=(($colonne * 69))?>px;
61
			}
879 jpm 62
			#cel-galerie-photo<?=$id?> #cel-photo-extra<?=$id?> img{
587 jpm 63
				width:<?=(($colonne * 69)-6)?>px;
64
			}
583 jpm 65
		</style>
587 jpm 66
 
67
		<!-- Javascript : bibliothèques -->
2993 mathias 68
		<script type="text/javascript" src="https://www.tela-botanica.org/commun/jquery/1.6/jquery-1.6.min.js"></script>
69
		<script type="text/javascript" src="https://www.tela-botanica.org/commun/jquery/fancybox/1.3.4/jquery.fancybox-1.3.4.js"></script>
2848 mathias 70
 
71
		<!--  Google Analytics -->
72
		<?php if($prod): ?>
73
			<?php include "analytics.html"; ?>
74
		<?php endif; ?>
580 jpm 75
	</head>
76
	<body>
77
		<!-- WIDGET:CEL:PHOTO - DEBUT -->
879 jpm 78
		<div id="cel-photo-contenu<?=$id?>" class="cel-photo-contenu">
580 jpm 79
		<?php if (isset($erreurs) || isset($informations)) : ?>
80
			<h1>Erreur &amp; informations</h1>
81
			<p>Impossible d'afficher le flux.</p>
82
			<!-- Affichage des erreurs et messages d'information : -->
83
			<?php if ($erreurs) : ?>
84
				<?php foreach ($erreurs as $erreur) : ?>
85
					<p class="erreur"><?=$erreur;?></p>
86
				<?php endforeach; ?>
87
			<?php endif; ?>
88
 
89
			<?php if ($informations) : ?>
90
				<?php foreach ($informations as $information) : ?>
91
					<p class="info"><?=$information;?></p>
92
				<?php endforeach; ?>
93
			<?php endif; ?>
94
		<?php else : ?>
95
		 	<h1>
879 jpm 96
		 		<? if (!empty($titre)) : ?>
97
		 			<?=$titre?>
1480 aurelien 98
		 		<? endif ; ?>
99
		 		<? if($icone_rss) : ?>
583 jpm 100
		 		<a href="<?=$flux_rss_url?>"
879 jpm 101
					class="cel-photo-flux"
580 jpm 102
					title="Suivre les images"
103
					onclick="window.open(this.href);return false;">
2993 mathias 104
					<img src="https://www.tela-botanica.org/sites/commun/generique/images/rss.png" alt="Suivre les images" />
580 jpm 105
				</a>
1480 aurelien 106
				<? endif; ?>
583 jpm 107
		 	</h1>
879 jpm 108
			<div id="cel-galerie-photo<?=$id?>">
580 jpm 109
			<?php foreach ($items as $item) : ?>
587 jpm 110
				<div class="cel-photo">
3636 delphine 111
					<a href="<?=sprintf($item['url_tpl'], 'XL')?>.jpg" class="cel-img" title="<?=$item['titre']?> - Publiée le <?=$item['date']?> - GUID : <?=$item['guid']?>" rel="galerie-princ<?=$id?>">
627 jpm 112
						<img src="<?=sprintf($item['url_tpl'], 'CRX2S')?>" alt="<?=$item['titre']?>"/>
580 jpm 113
					</a>
587 jpm 114
					<div id="cel-info-<?=$item['guid']?>" class="cel-infos">
583 jpm 115
						<strong>
1451 aurelien 116
							<?php if ($item['eflore_url'] != '#' && $item['eflore_url'] != '') { ?>
587 jpm 117
							<a class="cel-img-titre" href="<?=$item['eflore_url']?>"
583 jpm 118
								onclick="window.open(this.href);return false;"
119
								title="Cliquez pour accéder à la fiche eFlore">
1495 aurelien 120
								<?=$item['infos']['nom_sci']?>
121
							</a> par
122
							<a class="cel-img-contact"
123
								href="?mode=contact&nn=<?= urlencode($item['infos']['nn']) ;?>&nom_sci=<?= urlencode($item['infos']['nom_sci']) ;?>&date=<?= urlencode($item['infos']['date']) ;?>&id_image=<?= $item['guid']; ?>"
124
								title="Cliquez pour contacter l'auteur de la photo">
125
								<?=$item['infos']['auteur']?>
583 jpm 126
							</a>
2585 mathias 127
							à <?= $item['infos']['localite'] ?>
1495 aurelien 128
							le <?=$item['infos']['date']?>
1451 aurelien 129
							<?php } else { ?>
130
								<?=$item['titre']?>
131
							<?php } ?>
583 jpm 132
						</strong><br />
587 jpm 133
						<span class="cel-img-date">Publiée le <?=$item['date']?></span>
583 jpm 134
		 			</div>
580 jpm 135
				</div>
136
			<?php endforeach; ?>
137
			<?php if ($extra_actif) : ?>
879 jpm 138
				<div id="cel-photo-extra<?=$id?>" class="cel-photo-extra cel-photo">
3636 delphine 139
					<a href="<?=sprintf($extra['url_tpl'], 'XL')?>.jpg" class="cel-img" title="<?=$extra['titre']?> - Publiée le <?=$extra['date']?> - GUID : <?=$extra['guid']?>" rel="galerie-princ<?=$id?>">
627 jpm 140
						<img src="<?=sprintf($extra['url_tpl'], 'CRS')?>" alt="<?=$extra['titre']?>"/>
580 jpm 141
					</a>
142
				</div>
143
			</div>
144
			<?php endif ?>
879 jpm 145
			<p class="cel-photo-pieds discretion nettoyage">
146
				<span class="cel-photo-source">
147
					Source :
1480 aurelien 148
					<a href="http://www.tela-botanica.org/page:cel" title="Carnet en Ligne" onclick="window.open(this.href);return false;">
879 jpm 149
				 		CEL
150
				 	</a>
151
			 	</span>
152
			 	<span class="cel-photo-date-generation">Au <?=strftime('%A %d %B %Y à %H:%M:%S')?></span>
153
			 </p>
580 jpm 154
			<script type="text/Javascript">
583 jpm 155
				//<![CDATA[
1480 aurelien 156
				var utiliseFancybox = "<?= $utilise_fancybox; ?>";
157
				if(utiliseFancybox) {
158
					$('a.cel-img').attr('rel', 'galerie-princ<?=$id?>').fancybox({
159
						transitionIn:'elastic',
160
						transitionOut:'elastic',
161
						speedIn	:600,
162
						speedOut:200,
163
						overlayShow:true,
164
						titleShow:true,
165
						titlePosition:'inside',
166
						titleFormat:function (titre, currentArray, currentIndex, currentOpts) {
167
							var motif = /GUID : ([0-9]+)$/;
168
							motif.exec(titre);
169
							var guid = RegExp.$1;
170
							var info = $('#cel-info-'+guid).clone().html();
171
							var tpl =
172
								'<div class="cel-legende">'+
173
								'<p class="cel-legende-vei">'+'Image n°' + (currentIndex + 1) + ' sur ' + currentArray.length +'<\/p>'+
174
								(titre && titre.length ? '<p>'+info+'<\/p>' : '' )+
175
								'<\/div>';
176
							return tpl;
177
						}
178
					});
179
				} else {
180
					$('a.cel-img').click(function(event) {
181
						ouvrirFenetrePopup($(this));
182
						event.preventDefault();
183
					});
184
				}
1495 aurelien 185
 
186
				$(document).ready(function() {
187
					$('a.cel-img-contact').live('click', function(event) {
188
						event.preventDefault();
189
						ouvrirFenetreContact($(this));
190
					});
191
				});
1480 aurelien 192
 
193
				function ouvrirFenetrePopup(lienImage) {
1495 aurelien 194
					var url = "?mode=popup&url_image="+lienImage.attr('href')+'&galerie_id=<?= $galerie_id ?>';
1480 aurelien 195
					window.open(url, '', 'directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no, width='+(700)+', height='+(650));
196
				}
1495 aurelien 197
 
198
				function ouvrirFenetreContact(lienImage) {
199
					var url = lienImage.attr("href");
200
					window.open(url, '_blank', 'directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no, width='+(400)+', height='+(550));
201
				}
580 jpm 202
				//]]>
203
			</script>
204
	   	<?php endif; ?>
205
		</div>
206
		<!-- WIDGET:CEL:PHOTO - FIN -->
207
	</body>
208
</html>