Subversion Repositories eFlore/Archives.chorologie

Rev

Rev 34 | Rev 37 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 34 Rev 35
Line 19... Line 19...
19
// |                                                                                                      |
19
// |                                                                                                      |
20
// | You should have received a copy of the GNU General Public License                                    |
20
// | You should have received a copy of the GNU General Public License                                    |
21
// | along with Foobar; if not, write to the Free Software                                                |
21
// | along with Foobar; if not, write to the Free Software                                                |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
23
// +------------------------------------------------------------------------------------------------------+
23
// +------------------------------------------------------------------------------------------------------+
24
// CVS : $Id: echoro_affichage_xhtml.fonct.php,v 1.5 2006-05-31 14:43:35 jp_milcent Exp $
24
// CVS : $Id: echoro_affichage_xhtml.fonct.php,v 1.6 2006-05-31 15:11:29 jp_milcent Exp $
25
/**
25
/**
26
* Fichier permettant d'inclure les données dans du XHTML.
26
* Fichier permettant d'inclure les données dans du XHTML.
27
*
27
*
28
* Fichier contenant des fonctions retournant du XHTML une fois les données passées en paramêtre incluse à l 'intérieur.
28
* Fichier contenant des fonctions retournant du XHTML une fois les données passées en paramêtre incluse à l 'intérieur.
29
*
29
*
Line 32... Line 32...
32
//Auteur original :
32
//Auteur original :
33
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
33
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
34
//Autres auteurs :
34
//Autres auteurs :
35
*@author        Aucun
35
*@author        Aucun
36
*@copyright     Tela-Botanica 2000-2004
36
*@copyright     Tela-Botanica 2000-2004
37
*@version       $Revision: 1.5 $ $Date: 2006-05-31 14:43:35 $
37
*@version       $Revision: 1.6 $ $Date: 2006-05-31 15:11:29 $
38
// +------------------------------------------------------------------------------------------------------+
38
// +------------------------------------------------------------------------------------------------------+
39
*/
39
*/
Line 40... Line 40...
40
 
40
 
41
/**
41
/**
Line 216... Line 216...
216
                $html_renvoyer .= '<li>'.$variable[0][$i].'</li>';
216
                $html_renvoyer .= '<li>'.$variable[0][$i].'</li>';
217
            }
217
            }
218
            $html_renvoyer .= '</ul>';
218
            $html_renvoyer .= '</ul>';
Line 219... Line 219...
219
 
219
 
-
 
220
            // Gestion de l'export
220
            // Gestion de l'export
221
            if ($GLOBALS['export_bool']) {
221
            $html_renvoyer .= '<h2>Télécharger les données : </h2>'."\n";
222
	            $html_renvoyer .= '<h2>Télécharger les données : </h2>'."\n";
222
            $url_export = clone $GLOBALS['_ECHORO_']['url'];
223
	            $url_export = clone $GLOBALS['_ECHORO_']['url'];
223
            $url_export->addQueryString('image_x', $GLOBALS['image_x']);
224
	            $url_export->addQueryString('image_x', $GLOBALS['image_x']);
224
            $url_export->addQueryString('image_y', $GLOBALS['image_y']);
225
	            $url_export->addQueryString('image_y', $GLOBALS['image_y']);
225
            $url_export->addQueryString('lettre', $GLOBALS['lettre']);
226
	            $url_export->addQueryString('lettre', $GLOBALS['lettre']);
226
            $url_export->addQueryString('departement', $GLOBALS['departement']);
227
	            $url_export->addQueryString('departement', $GLOBALS['departement']);
227
            $url_export->addQueryString('nombre_taxon', $GLOBALS['nombre_taxon']);
228
	            $url_export->addQueryString('nombre_taxon', $GLOBALS['nombre_taxon']);
228
            $url_export->addQueryString('action', 'export');
229
	            $url_export->addQueryString('action', 'export');
229
            $url_export->addQueryString('format', 'xls');
230
	            $url_export->addQueryString('format', 'xls');
230
            if ($GLOBALS['lettre'] != 'tous') {
231
	            if ($GLOBALS['lettre'] != 'tous') {
231
            	$html_renvoyer .= '<p><a href="'.$url_export->getURL().'">Export au format excell des taxons du département commençant par la lettre '.$GLOBALS['lettre'].'.</a></p>';
232
	            	$html_renvoyer .= '<p><a href="'.$url_export->getURL().'">Export au format excell des taxons du département commençant par la lettre '.$GLOBALS['lettre'].'.</a></p>';
232
            } else {
233
	            } else {
-
 
234
	            	$html_renvoyer .= '<p><a href="'.$url_export->getURL().'">Export au format excell de tous les taxons du département.</a></p>';
233
            	$html_renvoyer .= '<p><a href="'.$url_export->getURL().'">Export au format excell de tous les taxons du département.</a></p>';
235
	            }
234
            }
236
            }
235
 
237
            
236
            // Gestion du titre de la navigation
238
            // Gestion du titre de la navigation
237
            $html_renvoyer .= '<h2>Recherche et navigation dans les résultats : </h2>'."\n";
239
            $html_renvoyer .= '<h2>Recherche et navigation dans les résultats : </h2>'."\n";
Line 238... Line 240...
238
            break;
240
            break;
Line 262... Line 264...
262
}//fin fonction inclusion_html
264
}//fin fonction inclusion_html
Line 263... Line 265...
263
 
265
 
264
/* +--Fin du code ----------------------------------------------------------------------------------------+
266
/* +--Fin du code ----------------------------------------------------------------------------------------+
265
*
267
*
-
 
268
* $Log: not supported by cvs2svn $
-
 
269
* Revision 1.5  2006/05/31 14:43:35  jp_milcent
-
 
270
* Correction de la gestion des sessions pour l'affichage de la carte.
-
 
271
* Ajout de l'export au format xls.
266
* $Log: not supported by cvs2svn $
272
*
267
* Revision 1.4  2005/05/31 13:45:22  jpm
273
* Revision 1.4  2005/05/31 13:45:22  jpm
268
* Correction erreur xhtml.
274
* Correction erreur xhtml.
269
*
275
*
270
* Revision 1.3  2005/02/23 17:29:57  jpm
276
* Revision 1.3  2005/02/23 17:29:57  jpm