Subversion Repositories eFlore/Applications.cel

Rev

Rev 2546 | 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 {
28
				echo '<meta property="og:image" content="http://resources.tela-botanica.org/tb/img/256x256/carre_englobant.png" />'
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 -->
2562 mathias 40
		<link rel="icon" type="image/png" href="http://resources.tela-botanica.org/tb/img/16x16/favicon.png" />
41
		<link rel="shortcut icon" type="image/x-icon" href="http://resources.tela-botanica.org/tb/img/16x16/favicon.ico" />
580 jpm 42
 
43
		<!-- Feuilles de styles -->
587 jpm 44
		<link rel="stylesheet" type="text/css" href="http://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 -->
879 jpm 68
		<script type="text/javascript" src="http://www.tela-botanica.org/commun/jquery/1.6/jquery-1.6.min.js"></script>
587 jpm 69
		<script type="text/javascript" src="http://www.tela-botanica.org/commun/jquery/fancybox/1.3.4/jquery.fancybox-1.3.4.js"></script>
580 jpm 70
	</head>
71
	<body>
72
		<!-- WIDGET:CEL:PHOTO - DEBUT -->
879 jpm 73
		<div id="cel-photo-contenu<?=$id?>" class="cel-photo-contenu">
580 jpm 74
		<?php if (isset($erreurs) || isset($informations)) : ?>
75
			<h1>Erreur &amp; informations</h1>
76
			<p>Impossible d'afficher le flux.</p>
77
			<!-- Affichage des erreurs et messages d'information : -->
78
			<?php if ($erreurs) : ?>
79
				<?php foreach ($erreurs as $erreur) : ?>
80
					<p class="erreur"><?=$erreur;?></p>
81
				<?php endforeach; ?>
82
			<?php endif; ?>
83
 
84
			<?php if ($informations) : ?>
85
				<?php foreach ($informations as $information) : ?>
86
					<p class="info"><?=$information;?></p>
87
				<?php endforeach; ?>
88
			<?php endif; ?>
89
		<?php else : ?>
90
		 	<h1>
879 jpm 91
		 		<? if (!empty($titre)) : ?>
92
		 			<?=$titre?>
1480 aurelien 93
		 		<? endif ; ?>
94
		 		<? if($icone_rss) : ?>
583 jpm 95
		 		<a href="<?=$flux_rss_url?>"
879 jpm 96
					class="cel-photo-flux"
580 jpm 97
					title="Suivre les images"
98
					onclick="window.open(this.href);return false;">
587 jpm 99
					<img src="http://www.tela-botanica.org/sites/commun/generique/images/rss.png" alt="Suivre les images" />
580 jpm 100
				</a>
1480 aurelien 101
				<? endif; ?>
583 jpm 102
		 	</h1>
879 jpm 103
			<div id="cel-galerie-photo<?=$id?>">
580 jpm 104
			<?php foreach ($items as $item) : ?>
587 jpm 105
				<div class="cel-photo">
879 jpm 106
					<a href="<?=sprintf($item['url_tpl'], 'XL')?>" class="cel-img" title="<?=$item['titre']?> - Publiée le <?=$item['date']?> - GUID : <?=$item['guid']?>" rel="galerie-princ<?=$id?>">
627 jpm 107
						<img src="<?=sprintf($item['url_tpl'], 'CRX2S')?>" alt="<?=$item['titre']?>"/>
580 jpm 108
					</a>
587 jpm 109
					<div id="cel-info-<?=$item['guid']?>" class="cel-infos">
583 jpm 110
						<strong>
1451 aurelien 111
							<?php if ($item['eflore_url'] != '#' && $item['eflore_url'] != '') { ?>
587 jpm 112
							<a class="cel-img-titre" href="<?=$item['eflore_url']?>"
583 jpm 113
								onclick="window.open(this.href);return false;"
114
								title="Cliquez pour accéder à la fiche eFlore">
1495 aurelien 115
								<?=$item['infos']['nom_sci']?>
116
							</a> par
117
							<a class="cel-img-contact"
118
								href="?mode=contact&nn=<?= urlencode($item['infos']['nn']) ;?>&nom_sci=<?= urlencode($item['infos']['nom_sci']) ;?>&date=<?= urlencode($item['infos']['date']) ;?>&id_image=<?= $item['guid']; ?>"
119
								title="Cliquez pour contacter l'auteur de la photo">
120
								<?=$item['infos']['auteur']?>
583 jpm 121
							</a>
1495 aurelien 122
							le <?=$item['infos']['date']?>
1451 aurelien 123
							<?php } else { ?>
124
								<?=$item['titre']?>
125
							<?php } ?>
583 jpm 126
						</strong><br />
587 jpm 127
						<span class="cel-img-date">Publiée le <?=$item['date']?></span>
583 jpm 128
		 			</div>
580 jpm 129
				</div>
130
			<?php endforeach; ?>
131
			<?php if ($extra_actif) : ?>
879 jpm 132
				<div id="cel-photo-extra<?=$id?>" class="cel-photo-extra cel-photo">
133
					<a href="<?=sprintf($extra['url_tpl'], 'XL')?>" class="cel-img" title="<?=$extra['titre']?> - Publiée le <?=$extra['date']?> - GUID : <?=$extra['guid']?>" rel="galerie-princ<?=$id?>">
627 jpm 134
						<img src="<?=sprintf($extra['url_tpl'], 'CRS')?>" alt="<?=$extra['titre']?>"/>
580 jpm 135
					</a>
136
				</div>
137
			</div>
138
			<?php endif ?>
879 jpm 139
			<p class="cel-photo-pieds discretion nettoyage">
140
				<span class="cel-photo-source">
141
					Source :
1480 aurelien 142
					<a href="http://www.tela-botanica.org/page:cel" title="Carnet en Ligne" onclick="window.open(this.href);return false;">
879 jpm 143
				 		CEL
144
				 	</a>
145
			 	</span>
146
			 	<span class="cel-photo-date-generation">Au <?=strftime('%A %d %B %Y à %H:%M:%S')?></span>
147
			 </p>
580 jpm 148
			<script type="text/Javascript">
583 jpm 149
				//<![CDATA[
1480 aurelien 150
				var utiliseFancybox = "<?= $utilise_fancybox; ?>";
151
				if(utiliseFancybox) {
152
					$('a.cel-img').attr('rel', 'galerie-princ<?=$id?>').fancybox({
153
						transitionIn:'elastic',
154
						transitionOut:'elastic',
155
						speedIn	:600,
156
						speedOut:200,
157
						overlayShow:true,
158
						titleShow:true,
159
						titlePosition:'inside',
160
						titleFormat:function (titre, currentArray, currentIndex, currentOpts) {
161
							var motif = /GUID : ([0-9]+)$/;
162
							motif.exec(titre);
163
							var guid = RegExp.$1;
164
							var info = $('#cel-info-'+guid).clone().html();
165
							var tpl =
166
								'<div class="cel-legende">'+
167
								'<p class="cel-legende-vei">'+'Image n°' + (currentIndex + 1) + ' sur ' + currentArray.length +'<\/p>'+
168
								(titre && titre.length ? '<p>'+info+'<\/p>' : '' )+
169
								'<\/div>';
170
							return tpl;
171
						}
172
					});
173
				} else {
174
					$('a.cel-img').click(function(event) {
175
						ouvrirFenetrePopup($(this));
176
						event.preventDefault();
177
					});
178
				}
1495 aurelien 179
 
180
				$(document).ready(function() {
181
					$('a.cel-img-contact').live('click', function(event) {
182
						event.preventDefault();
183
						ouvrirFenetreContact($(this));
184
					});
185
				});
1480 aurelien 186
 
187
				function ouvrirFenetrePopup(lienImage) {
1495 aurelien 188
					var url = "?mode=popup&url_image="+lienImage.attr('href')+'&galerie_id=<?= $galerie_id ?>';
1480 aurelien 189
					window.open(url, '', 'directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no, width='+(700)+', height='+(650));
190
				}
1495 aurelien 191
 
192
				function ouvrirFenetreContact(lienImage) {
193
					var url = lienImage.attr("href");
194
					window.open(url, '_blank', 'directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no, width='+(400)+', height='+(550));
195
				}
580 jpm 196
				//]]>
197
			</script>
198
	   	<?php endif; ?>
199
		</div>
200
		<!-- WIDGET:CEL:PHOTO - FIN -->
201
	</body>
202
</html>